Skip to content

Commit

Permalink
Reduce default inactivity limit to 3s (#287)
Browse files Browse the repository at this point in the history
Signed-off-by: Peng Huo <[email protected]>
  • Loading branch information
penghuo authored Mar 19, 2024
1 parent e6a97dc commit 029f843
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class FlintOptions implements Serializable {

public static final int DEFAULT_SOCKET_TIMEOUT_MILLIS = 60000;

public static final int DEFAULT_INACTIVITY_LIMIT_MILLIS = 10 * 60 * 1000;
public static final int DEFAULT_INACTIVITY_LIMIT_MILLIS = 3 * 60 * 1000;

public static final String DATA_SOURCE_NAME = "spark.flint.datasource.name";

Expand Down

0 comments on commit 029f843

Please sign in to comment.