fc730c0a93040edc02eb7abc3c3d853075b417f1,lib/streamlit/config.py,,_check_conflicts,#,649
Before Change
def _check_conflicts():
if (get_option("s3.sharingEnabled")
and not get_option("s3.usePublicStorage")):
assert get_option("s3.bucket"), (
"For sharing, s3.bucket must be set")
if (get_option("client.tryToOutliveProxy")
and not get_option("proxy.isRemote")):
LOGGER.warning(
"The following combination of settings...\n"
After Change
def _check_conflicts():
s3_settings_internal = get_option("s3.settingsInternal")
if s3_settings_internal is not None:
assert s3_settings_internal.get("bucket"), (
"For sharing via S3, s3.bucket must be set")
if (get_option("client.tryToOutliveProxy")
and not get_option("proxy.isRemote")):
LOGGER.warning(
"The following combination of settings...\n"
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 4
Instances
Project Name: streamlit/streamlit
Commit Name: fc730c0a93040edc02eb7abc3c3d853075b417f1
Time: 2018-12-07
Author: thiagot@gmail.com
File Name: lib/streamlit/config.py
Class Name:
Method Name: _check_conflicts
Project Name: streamlit/streamlit
Commit Name: d24989cdda816343f74a97fc32ce3fd1a689a265
Time: 2019-07-16
Author: thiago@streamlit.io
File Name: lib/streamlit/Server.py
Class Name:
Method Name: _is_url_from_allowed_origins
Project Name: streamlit/streamlit
Commit Name: 182af8281295a110f8079c561be378b4044dab8e
Time: 2018-12-10
Author: thiagot@gmail.com
File Name: lib/streamlit/config.py
Class Name:
Method Name: _check_conflicts
Project Name: streamlit/streamlit
Commit Name: 4a5b5153ec136e445e74c5a3dbcdb9d0abf5acc3
Time: 2019-03-30
Author: thiagot@gmail.com
File Name: lib/streamlit/__init__.py
Class Name:
Method Name: _get_current_delta_generator