diff --git a/.github/workflows/test-run-wo-codegen.yml b/.github/workflows/test-run-wo-codegen.yml index 0a80561885ec..a28317047bb8 100644 --- a/.github/workflows/test-run-wo-codegen.yml +++ b/.github/workflows/test-run-wo-codegen.yml @@ -1,4 +1,4 @@ -name: Nightly Test Run +name: Nightly Test Run (No Codegen) on: schedule: # UTC at 0400 on Monday and Thursday diff --git a/src/ansys/fluent/core/streaming_services/transcript_streaming.py b/src/ansys/fluent/core/streaming_services/transcript_streaming.py index c5fe89a507b7..1a44c4ba514a 100644 --- a/src/ansys/fluent/core/streaming_services/transcript_streaming.py +++ b/src/ansys/fluent/core/streaming_services/transcript_streaming.py @@ -11,6 +11,7 @@ def __init__(self, file_path: str): def __call__(self, transcript): self.f.write(transcript) + self.f.flush() def __del__(self): self.f.close()