Skip to content

Commit

Permalink
increase spec and discover worker timeouts to 30 minutes (airbytehq#1674
Browse files Browse the repository at this point in the history
)
  • Loading branch information
sherifnada authored Jan 18, 2021
1 parent 2acc384 commit d5489b1
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 @@ -81,7 +81,7 @@ public OutputAndStatus<StandardDiscoverCatalogOutput> run(final StandardDiscover
.map(AirbyteMessage::getCatalog)
.findFirst();

WorkerUtils.gentleClose(process, 1, TimeUnit.MINUTES);
WorkerUtils.gentleClose(process, 30, TimeUnit.MINUTES);
}

int exitCode = process.exitValue();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public OutputAndStatus<StandardGetSpecOutput> run(JobGetSpecConfig config, Path
// this.
// retrieving spec should generally be instantaneous, but since docker images might not be pulled
// it could take a while longer depending on internet conditions as well.
WorkerUtils.gentleClose(process, 2, TimeUnit.MINUTES);
WorkerUtils.gentleClose(process, 30, TimeUnit.MINUTES);
}

int exitCode = process.exitValue();
Expand Down

0 comments on commit d5489b1

Please sign in to comment.