Skip to content

Commit

Permalink
Increase transform service timeout (apache#28267)
Browse files Browse the repository at this point in the history
  • Loading branch information
chamikaramj committed Sep 14, 2023
1 parent ac17ed2 commit 5696c59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class TransformServiceLauncher {
private Map<String, String> environmentVariables = new HashMap<>();

// Amount of time (in milliseconds) to wait till the Docker Compose starts up.
private static final int DEFAULT_START_WAIT_TIME = 25000;
private static final int DEFAULT_START_WAIT_TIME = 50000;
private static final int STATUS_LOGGER_WAIT_TIME = 3000;

@SuppressWarnings("argument")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

class TransformServiceLauncher(object):
_DEFAULT_PROJECT_NAME = 'apache.beam.transform.service'
_DEFAULT_START_WAIT_TIMEOUT = 25000
_DEFAULT_START_WAIT_TIMEOUT = 50000

_launchers = {} # type: ignore

Expand Down

0 comments on commit 5696c59

Please sign in to comment.