Skip to content

Commit

Permalink
Fix bug with kubernetes executor (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin O'Riordan authored and puckel committed Nov 22, 2019
1 parent 5fe09a2 commit 70892af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/airflow.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ tolerations =
# https://raw.githubusercontent.com/kubernetes-client/python/master/kubernetes/client/apis/core_v1_api.py
# Note that if no _request_timeout is specified, the kubernetes client will wait indefinitely for kubernetes
# api responses, which will cause the scheduler to hang. The timeout is specified as [connect timeout, read timeout]
kube_client_request_args = {{"_request_timeout" : [60,60] }}
kube_client_request_args = {"_request_timeout" : [60,60] }

# Worker pods security context options
# See:
Expand Down

0 comments on commit 70892af

Please sign in to comment.