|
134 | 134 | res
|
135 | 135 | (do
|
136 | 136 | (if (instance? Throwable res)
|
137 |
| - (log/error res "A failure occurred; retrying...") |
138 |
| - (log/error (str "A failure occurred; retrying... [" (pr-str res) "]"))) |
| 137 | + (log/warn res "A failure occurred; retrying...") |
| 138 | + (log/warn (str "A failure occurred; retrying... [" (pr-str res) "]"))) |
139 | 139 | (Thread/sleep pause-millis)
|
140 | 140 | (recur (dec tries) pause-millis f args))))))
|
141 | 141 |
|
|
152 | 152 | {:exception e})))]
|
153 | 153 | (if (:exception res)
|
154 | 154 | (do
|
155 |
| - (log/error (:exception res) "A failure occurred; retrying...") |
| 155 | + (log/warn (:exception res) "A failure occurred; retrying...") |
156 | 156 | (Thread/sleep pause-millis)
|
157 | 157 | (recur (dec tries) pause-millis f args))
|
158 | 158 | (:value res))))
|
|
265 | 265 | (if (failure? result)
|
266 | 266 | (do
|
267 | 267 | (case (retry? j result)
|
268 |
| - :ABORT-MAX-RETRIES (do (log/error (RuntimeException. (str "MAX-RETRIES(" tries ")[" job-name "]: " (.getMessage result)) result)) |
| 268 | + :ABORT-MAX-RETRIES (do (log/warn (RuntimeException. (str "MAX-RETRIES(" tries ")[" job-name "]: " (.getMessage result)) result)) |
269 | 269 | (throw result))
|
270 |
| - :ABORT-FATAL-ERROR (do (log/error (RuntimeException. (str "FATAL[" job-name "]: " (.getMessage result)) result)) |
| 270 | + :ABORT-FATAL-ERROR (do (log/warn (RuntimeException. (str "FATAL[" job-name "]: " (.getMessage result)) result)) |
271 | 271 | (throw result))
|
272 |
| - :RETRY-FAILURE (do (log/error result (str "RETRY[" job-name "]; " (type result) ": " (.getMessage result))) |
| 272 | + :RETRY-FAILURE (do (log/warn result (str "RETRY[" job-name "]; " (type result) ": " (.getMessage result))) |
273 | 273 | (Thread/sleep pause-millis))
|
274 |
| - :RETRY-TIMEOUT (do (log/error (RuntimeException. "Timeout.") (str "RETRY[" job-name "]: Took longer than " timeout-millis " ms.")) |
| 274 | + :RETRY-TIMEOUT (do (log/warn (RuntimeException. "Timeout.") (str "RETRY[" job-name "]: Took longer than " timeout-millis " ms.")) |
275 | 275 | (Thread/sleep pause-millis))
|
276 |
| - :else (throw (IllegalStateException. "Program Error! We should never get here."))) |
| 276 | + :else (throw (IllegalStateException. "Program Error! We should never get here."))) |
277 | 277 | (recur (update-in j [:retries] inc)))
|
278 | 278 | result)))))
|
279 | 279 |
|
|
0 commit comments