Skip to content

Commit

Permalink
P0MS-211 Made default async after much smaller (20s -> 1s)
Browse files Browse the repository at this point in the history
  • Loading branch information
mihxil committed Dec 18, 2024
1 parent 1ffd13c commit 161a76e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private LetterBoxRegistration(
this.principalId = principalId;
this.description = description;
this.implementingClass = implementingClass;
this.asyncAfter = asyncAfter == null ? Duration.ofSeconds(20) : asyncAfter;
this.asyncAfter = asyncAfter == null ? Duration.ofSeconds(1) : asyncAfter;
this.acceptAll = acceptAll;
this.errors = errors;
}
Expand Down

0 comments on commit 161a76e

Please sign in to comment.