From 70892af494edf9feef7d632cfa746fcb83385a35 Mon Sep 17 00:00:00 2001 From: Kevin O'Riordan Date: Fri, 22 Nov 2019 10:53:07 +0000 Subject: [PATCH] Fix bug with kubernetes executor (#470) --- config/airflow.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/airflow.cfg b/config/airflow.cfg index 5d2ae374..a3cda086 100644 --- a/config/airflow.cfg +++ b/config/airflow.cfg @@ -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: