bbca6b9a76b64c0fce20956a7047f45df9d87b61,lib/streamlit/proxy/Proxy.py,Proxy,_run_on_save_default_value,#Proxy#,525
Before Change
@property
def _run_on_save_default_value(self):
True if ReportSessions have run-on-save enabled by default
return (config.get_option("proxy.watchFileSystem") and
not self._keep_alive)
def _get_report_session(self, report_name, create_if_missing=False):
Returns the ReportSession for the given report name if it
exists.
After Change
@property
def _run_on_save_default_value(self):
True if ReportSessions have run-on-save enabled by default
return config.get_option("proxy.runOnSave")
def _get_report_session(self, report_name, create_if_missing=False):
Returns the ReportSession for the given report name if it
exists.
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances Project Name: streamlit/streamlit
Commit Name: bbca6b9a76b64c0fce20956a7047f45df9d87b61
Time: 2019-04-17
Author: tconkling@gmail.com
File Name: lib/streamlit/proxy/Proxy.py
Class Name: Proxy
Method Name: _run_on_save_default_value
Project Name: streamlit/streamlit
Commit Name: d5cf3a13a60818b512c3f111ed0b5c4b0a8b95a8
Time: 2019-04-22
Author: tconkling@gmail.com
File Name: lib/streamlit/proxy/Proxy.py
Class Name: Proxy
Method Name: _run_on_save_default_value
Project Name: streamlit/streamlit
Commit Name: 8d926d2f78b84251395327923724d8c0c8af622d
Time: 2021-02-24
Author: tconkling@gmail.com
File Name: lib/streamlit/config.py
Class Name:
Method Name: _server_headless