Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion testplan/monitor/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,9 +523,9 @@ def dump(self) -> str:
return str(meta_file_path.resolve())

def start(self, timeout: int = 5) -> None:
shared_dict = multiprocessing.Manager().dict()
tracing.force_flush() # flush so that no grpc communication is happening while forking
otel_logging.force_flush()
shared_dict = multiprocessing.Manager().dict()
self._server_process = multiprocessing.Process(
target=self._serve, args=(shared_dict,), daemon=True
)
Expand Down
Loading