-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor some defaults, use QueryOptions.DEFAULT in E2E test.
- Loading branch information
David Griffin
committed
Oct 31, 2024
1 parent
3996335
commit 1dd3442
Showing
5 changed files
with
27 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.fauna.constants; | ||
|
||
import java.time.Duration; | ||
|
||
public class Defaults { | ||
|
||
public static final Duration CLIENT_TIMEOUT_BUFFER = Duration.ofSeconds(5); | ||
public static final Duration DEFAULT_TIMEOUT = Duration.ofSeconds(5); | ||
public static final String LOCAL_FAUNA_SECRET = "secret"; | ||
public static final int MAX_CONTENTION_RETRIES = 3; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters