fix: latest OS and fixes
Some checks failed
ZeroDownTime/CloudBender/pipeline/head There was a failure building this commit
Some checks failed
ZeroDownTime/CloudBender/pipeline/head There was a failure building this commit
This commit is contained in:
parent
77918aa80d
commit
be403efa43
@ -1,8 +1,8 @@
|
||||
ARG RUNTIME_VERSION="3.11"
|
||||
ARG DISTRO_VERSION="3.19"
|
||||
ARG RUNTIME_VERSION="3.12"
|
||||
ARG DISTRO_VERSION="3.20"
|
||||
|
||||
FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS builder
|
||||
ARG RUNTIME_VERSION="3.11"
|
||||
ARG RUNTIME_VERSION="3.12"
|
||||
|
||||
RUN apk add --no-cache \
|
||||
autoconf \
|
||||
|
@ -447,10 +447,10 @@ def _provision(cb, stacks):
|
||||
# Pulumi is still not thread safe
|
||||
if _anyPulumi(step):
|
||||
_threads = 1
|
||||
else
|
||||
else:
|
||||
_threads = len(step)
|
||||
|
||||
with ThreadPoolExecutor(max_workers=_threads)) as group:
|
||||
with ThreadPoolExecutor(max_workers=_threads) as group:
|
||||
futures = []
|
||||
for stack in step:
|
||||
if stack.mode != "pulumi":
|
||||
|
@ -1066,7 +1066,7 @@ class Stack(object):
|
||||
if '.' in key:
|
||||
try:
|
||||
(root, leaf) = key.split('.')
|
||||
except ValueError as e:
|
||||
except ValueError:
|
||||
raise ParameterIllegalValue(
|
||||
"Currently only one level hierachies within parameters are supported!"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user