Skip to content

Commit

Permalink
Double timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
manukala6 committed Dec 5, 2024
1 parent e251cb0 commit 2b0bed5
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 15

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 = 28800
retries: int = 0
errors: List[str] = list()

Expand Down

0 comments on commit 2b0bed5

Please sign in to comment.