From 759f04434e217e5b949cdee602484aa3866cb865 Mon Sep 17 00:00:00 2001 From: Mainak Kundu Date: Wed, 1 Mar 2023 16:18:42 -0500 Subject: [PATCH 1/2] Flush transcript immediately --- src/ansys/fluent/core/streaming_services/transcript_streaming.py | 1 + 1 file changed, 1 insertion(+) 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() From d7222d22aa9dc7e7ebeb1ce1cdfe7b72470b74dc Mon Sep 17 00:00:00 2001 From: Mainak Kundu Date: Wed, 1 Mar 2023 16:50:46 -0500 Subject: [PATCH 2/2] Fix a title --- .github/workflows/test-run-wo-codegen.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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