We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76db7af commit c1c8150Copy full SHA for c1c8150
1 file changed
runner/internal/runner/executor/logs.go
@@ -15,10 +15,10 @@ type appendWriter struct {
15
history []schemas.LogEvent
16
timestamp *MonotonicTimestamp // shares with executor
17
18
- quota int // bytes per hour, 0 = unlimited
19
- bytesInHour int // bytes written in current hour bucket
20
- hourStart int64 // unix timestamp (seconds) of current hour bucket start
21
- quotaExceeded chan struct{} // closed when quota is exceeded (out-of-band signal)
+ quota int // bytes per hour, 0 = unlimited
+ bytesInHour int // bytes written in current hour bucket
+ hourStart int64 // unix timestamp (seconds) of current hour bucket start
+ quotaExceeded chan struct{} // closed when quota is exceeded (out-of-band signal)
22
exceededOnce sync.Once
23
}
24
0 commit comments