Fix MongoAction incorrect error message

This commit is contained in:
Justin Chu 2020-06-01 19:31:21 -04:00
parent 7f2c2e31ed
commit 8725cc4065

View File

@ -71,6 +71,6 @@ public class MongoAction implements SyncAction {
}
throw new RuntimeException(String.format("Exhausted max tries (%s) on cycle %s",
cycleValue, activity.getMaxTries()));
activity.getMaxTries(), cycleValue));
}
}