Rename async flow failure backoff config property

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=118207124
This commit is contained in:
ctingue
2016-05-13 17:37:10 -04:00
committed by Justine Tunney
parent 0c001d805c
commit f9e1bab1d2
3 changed files with 4 additions and 4 deletions
@@ -253,10 +253,10 @@ public interface RegistryConfig {
public Duration getAsyncDeleteFlowMapreduceDelay();
/**
* Returns the amount of time to back off following an async delete flow task failure.
* Returns the amount of time to back off following an async flow task failure.
*
* This should be ~orders of magnitude larger than the rate on the queue, in order to prevent
* the logs from filling up with unnecessarily failures.
*/
public Duration getAsyncDeleteFlowFailureBackoff();
public Duration getAsyncFlowFailureBackoff();
}