mirror of
https://github.com/clearml/clearml
synced 2025-01-31 09:07:00 +00:00
Fix if project has a default output uri
there is no way to disable it in development mode (manual). Allow passing output_uri=False
to disable it.
This commit is contained in:
parent
51af6e833d
commit
f0400dd099
@ -613,7 +613,9 @@ class Task(_Task):
|
||||
# set defaults
|
||||
if cls._offline_mode:
|
||||
task.output_uri = None
|
||||
elif output_uri:
|
||||
elif output_uri is not None:
|
||||
if output_uri is True:
|
||||
output_uri = task.get_project_object().default_output_destination or True
|
||||
task.output_uri = output_uri
|
||||
elif task.get_project_object().default_output_destination:
|
||||
task.output_uri = task.get_project_object().default_output_destination
|
||||
|
@ -195,6 +195,9 @@ sdk {
|
||||
# Status report period in seconds
|
||||
report_period_sec: 2
|
||||
|
||||
# The number of events to report
|
||||
report_event_flush_threshold: 50
|
||||
|
||||
# ping to the server - check connectivity
|
||||
ping_period_sec: 30
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user