-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[dagster-airlift] Airflow-dagster equivalents #26112
base: dpeng817/python_operator_docs
Are you sure you want to change the base?
[dagster-airlift] Airflow-dagster equivalents #26112
Conversation
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
8365a1f
to
267d5ec
Compare
c931603
to
10abc83
Compare
267d5ec
to
7f90cc5
Compare
10abc83
to
844a298
Compare
7f90cc5
to
e7d0535
Compare
844a298
to
2534e40
Compare
Graphite Automations"Add a 'docs-to-migrate' label to PRs with docs" took an action on this PR • (11/24/24)1 label was added to this PR based on Christopher DeCarolis's automation. |
e7d0535
to
b84bce9
Compare
cba5d13
to
781771a
Compare
def _s3_file(context): | ||
boto3.client("s3").upload_file(path) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The context
parameter is unused and can be removed. The upload_file
call is missing required parameters - the correct signature is:
boto3.client('s3').upload_file(path, 'bucket', path)
where bucket
is the destination S3 bucket name and the final path
argument specifies the S3 key.
Spotted by Graphite Reviewer
Is this helpful? React 👍 or 👎 to let us know.
b84bce9
to
3b3ee96
Compare
781771a
to
5786b87
Compare
Summary & Motivation
How I Tested These Changes
Changelog