-
Notifications
You must be signed in to change notification settings - Fork 3
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
#239: Changed return type for deploy API method #240
Conversation
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.
mostly a copy of https://github.com/exasol/script-languages-container-tool/blob/main/exasol/slc/internal/tasks/upload/upload_container_base_task.py. Only return type differs
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.
mostly a copy of https://github.com/exasol/script-languages-container-tool/blob/main/exasol/slc/internal/tasks/upload/upload_container_task.py only base class is different
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.
mostly a copy of https://github.com/exasol/script-languages-container-tool/blob/main/exasol/slc/internal/tasks/upload/upload_container_tasks_creator.py only created task is different
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.
exasol/slc/models/deploy_result.py
Outdated
@dataclass | ||
class DeployResult: | ||
release_path: str | ||
upload_url: str |
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.
Maybe we want to make this SaaS BucketFS compatible, maybe we actually return a BucketFS PathLike
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.
I can return both for now. The BucketFS Pathlike has some limitiations as we have seen.
fixes #239