Skip to content

Commit

Permalink
Merge pull request #166 from wri/hotfix/increase_timeout
Browse files Browse the repository at this point in the history
hotfix/double_timeout
  • Loading branch information
manukala6 authored Dec 9, 2024
2 parents e251cb0 + b60d62d commit 262a86a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN pip install . -t python
# to change the hash of the file and get TF to realize it needs to be
# redeployed. Ticket for a better solution:
# https://gfw.atlassian.net/browse/GTC-1250
# change 14
# change 16

RUN yum install -y zip geos-devel

Expand Down
2 changes: 1 addition & 1 deletion src/datapump/jobs/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Job(StrictBaseModel, ABC):
step: str = JobStep.starting
status: JobStatus = JobStatus.starting
start_time: Optional[str] = None
timeout_sec: int = 14400
timeout_sec: int = 57600 # 16hr timeout
retries: int = 0
errors: List[str] = list()

Expand Down

0 comments on commit 262a86a

Please sign in to comment.