Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[Osprey] Use Default Timeout for StoredExecutionResultOutputSink (#115)

authored by

Leon Shi and committed by
GitHub
2b997ae8 cd5c84cb

-3
-3
osprey_worker/src/osprey/worker/sinks/sink/stored_execution_result_output_sink.py
··· 6 6 class StoredExecutionResultOutputSink(BaseOutputSink): 7 7 """An output sink that persists the execution result to an EventRecord.""" 8 8 9 - # BigTable writes can take longer than the default 2s, especially on first connection 10 - timeout: float = 10.0 11 - 12 9 def __init__(self): 13 10 self._service = bootstrap_execution_result_storage_service() 14 11