-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicated outputs of luigi.task.flatten_output #3106
Labels
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If closed, you may revisit when your time allows and reopen! Thank you for your contributions. |
starhel
added a commit
to starhel/luigi
that referenced
this issue
Jun 10, 2022
starhel
added a commit
to starhel/luigi
that referenced
this issue
Jun 10, 2022
starhel
added a commit
to starhel/luigi
that referenced
this issue
Jan 30, 2023
starhel
added a commit
to starhel/luigi
that referenced
this issue
Jan 31, 2023
dlstadther
pushed a commit
that referenced
this issue
Feb 9, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
luigi.task.flatten_output
does not detect "diamond" problem. If some task is required by more than one wrapper task, its output is duplicated in returned list.Simple reproduction:
Actual output (
luigi==3.0.3
):['file.txt', 'file.txt']
Expected output:
['file.txt']
The text was updated successfully, but these errors were encountered: