We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd710f8 commit 9290f1cCopy full SHA for 9290f1c
src/operator/utils/base_listener.go
@@ -90,6 +90,10 @@ func NewBaseListener(
90
log.Printf("[%s] Warning: failed to create progress writer: %v", streamName, err)
91
progressWriter = nil
92
} else {
93
+ // Write initial progress so the startup probe finds the file immediately
94
+ if err := progressWriter.ReportProgress(); err != nil {
95
+ log.Printf("[%s] Warning: failed to write initial progress: %v", streamName, err)
96
+ }
97
log.Printf("[%s] Progress writer initialized: %s", streamName, progressFile)
98
}
99
0 commit comments