We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dd710f8 + 4a087fe commit a9a750dCopy full SHA for a9a750d
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