diff options
author | Wolfy-J <[email protected]> | 2018-09-07 23:49:19 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-09-07 23:49:19 +0300 |
commit | 487d7c52ef2fc911606e756035a08292b3bd0128 (patch) | |
tree | 674482f39dc3f224a95877c220b9014c465859a3 /error_buffer.go | |
parent | 64fc57065b59c36a280fd0aac8a4e98c20d0824d (diff) |
better static service root directory error
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 ) |