-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add s3 support to dropbox #63
base: master
Are you sure you want to change the base?
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.
looking good so far!
bento_drop_box_service/config.py
Outdated
@@ -21,6 +22,14 @@ class Config(BentoFastAPIBaseConfig): | |||
service_data_source: Literal["local"] = "local" | |||
traversal_limit: int = 16 | |||
|
|||
use_https: bool = True | |||
check_ssl_certificate: bool = False |
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.
we have a standard value for this, already configured in the BentoFastAPIBaseConfig
base class: https://github.com/bento-platform/bento_lib/blob/master/bento_lib/config/pydantic.py#L30
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.
(or maybe the context here is different? if so, then maybe put a comment above explaining)
@davidlougheed @v-rocheleau The problem with run.bash and run.dev.bash files is fixed. It was a problem with permissions + final new line (thanks David). |
No description provided.