From 8f218ede0a93a7225de364458cd02f433c5ff79e Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Wed, 5 Jun 2024 16:12:34 +0300 Subject: [PATCH] #2025 deactivate talk if repo is absent --- src/main/java/com/rultor/Routine.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/rultor/Routine.java b/src/main/java/com/rultor/Routine.java index ae4d3e12b0..70f730e752 100644 --- a/src/main/java/com/rultor/Routine.java +++ b/src/main/java/com/rultor/Routine.java @@ -206,6 +206,7 @@ private int process(final List active) throws IOException { } } catch (final DefaultBranch.RepoNotFoundException ex) { Logger.warn(this, "The repo not found: %[exception]s", ex); + talk.active(false); } } this.agents.closer().execute(this.talks);