Skip to content

Commit

Permalink
[TH2-5132] Refactored RepositoryWatcherService
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita-Smirnov-Exactpro committed Nov 27, 2023
1 parent 3488c2e commit 061349f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private void scheduledJob() {
GitterContext ctx = GitterContext.getContext(config);
Map<String, String> commits = ctx.getAllBranchesCommits();
LOGGER.info("Fetched branches: {}, current/previous branch count: {}/{}",
commits, commits.size(), prevBranchCount);
commits.keySet(), commits.size(), prevBranchCount);
if (prevBranchCount > commits.size()) {
removeExtinctedNamespaces(commits.keySet());
} else {
Expand Down

0 comments on commit 061349f

Please sign in to comment.