mirror of
https://github.com/google/nomulus
synced 2026-01-07 22:15:30 +00:00
Add retry logic to CreateLrpTokensCommand
A transient 404 on entity save interrupts a long-running run of this command. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=138400654
This commit is contained in:
@@ -16,6 +16,7 @@ package google.registry.util;
|
||||
|
||||
import static java.lang.annotation.ElementType.FIELD;
|
||||
import static java.lang.annotation.ElementType.METHOD;
|
||||
import static java.lang.annotation.ElementType.TYPE;
|
||||
import static java.lang.annotation.RetentionPolicy.SOURCE;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
@@ -36,5 +37,5 @@ import java.lang.annotation.Target;
|
||||
*/
|
||||
@Documented
|
||||
@Retention(SOURCE)
|
||||
@Target({FIELD, METHOD})
|
||||
@Target({FIELD, METHOD, TYPE})
|
||||
public @interface NonFinalForTesting {}
|
||||
|
||||
Reference in New Issue
Block a user