Skip to content

Commit 101ae9c

Browse files
committed
Requeue when error handling
1 parent 8ebe2d4 commit 101ae9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controller/epsilon_controller.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ impl EpsilonController {
277277

278278
fn on_error(error: &Error, _context: Arc<Context>) -> Action {
279279
warn!("Reconciliation error: {:?}", error);
280-
Action::await_change()
280+
Action::requeue(Duration::from_secs(5))
281281
}
282282

283283
fn get_image(template: &str) -> String {

0 commit comments

Comments
 (0)