X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f9e94997cb5c2166d8b71874f263544cfc2fe5ba..466e236c4174de64bdefeb1766160a11217c8c1c:/sdk/cwl/arvados_cwl/context.py diff --git a/sdk/cwl/arvados_cwl/context.py b/sdk/cwl/arvados_cwl/context.py index cf0c1fb7e4..48a3edec52 100644 --- a/sdk/cwl/arvados_cwl/context.py +++ b/sdk/cwl/arvados_cwl/context.py @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + from cwltool.context import LoadingContext, RuntimeContext class ArvLoadingContext(LoadingContext): @@ -24,5 +28,7 @@ class ArvRuntimeContext(RuntimeContext): self.wait = True self.cwl_runner_job = None self.storage_classes = "default" + self.current_container = None + self.http_timeout = 300 super(ArvRuntimeContext, self).__init__(kwargs)