Skip to content

Commit

Permalink
fixup! Import jobs now support S3 files using an org secret
Browse files Browse the repository at this point in the history
  • Loading branch information
juanpardo committed Sep 26, 2023
1 parent e994447 commit ec96a86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions croud/clusters/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@ def import_jobs_create_from_s3(args: Namespace) -> None:
"s3": {
"bucket": args.bucket,
"file_path": args.file_path,
"endpoint": args.endpoint,
"endpoint": args.endpoint or "",
"secret_id": args.secret_id,
}
}
args.type = "S3"
args.type = "s3"
import_jobs_create(args, extra_payload=extra_body)


Expand Down

0 comments on commit ec96a86

Please sign in to comment.