diff options
Diffstat (limited to 'error_buffer.go')
-rw-r--r-- | error_buffer.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/error_buffer.go b/error_buffer.go index 211fe25f..fec789a9 100644 --- a/error_buffer.go +++ b/error_buffer.go @@ -6,11 +6,12 @@ import ( ) const ( - // EventStderrOutput - is triggered when worker sends data into stderr. The context is error message ([]byte). + // EventStderrOutput - is triggered when worker sends data into stderr. The context + // is error message ([]byte). EventStderrOutput = 1900 - // WaitDuration - for how long error buffer should attempt to aggregate error messages before merging output - // together since lastError update (required to keep error update together). + // WaitDuration - for how long error buffer should attempt to aggregate error messages + // before merging output together since lastError update (required to keep error update together). WaitDuration = 100 * time.Millisecond ) |