mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-29 16:13:42 -05:00
replace error with warning for archiving timeout
This commit is contained in:
parent
0e8a924f28
commit
9936710a1a
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ processUpdates = (pending) ->
|
||||||
logger.error {err, result}, "error in pack archive worker"
|
logger.error {err, result}, "error in pack archive worker"
|
||||||
return callback(err)
|
return callback(err)
|
||||||
if shutDownRequested
|
if shutDownRequested
|
||||||
logger.error "shutting down pack archive worker"
|
logger.warn "shutting down pack archive worker"
|
||||||
return callback(new Error("shutdown"))
|
return callback(new Error("shutdown"))
|
||||||
setTimeout () ->
|
setTimeout () ->
|
||||||
callback(err, result)
|
callback(err, result)
|
||||||
|
|
Loading…
Reference in a new issue