fix: latest OS and fixes
Some checks failed
ZeroDownTime/CloudBender/pipeline/head There was a failure building this commit

This commit is contained in:
Stefan Reimer 2024-11-27 17:13:34 +00:00
parent 77918aa80d
commit be403efa43
3 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
ARG RUNTIME_VERSION="3.11" ARG RUNTIME_VERSION="3.12"
ARG DISTRO_VERSION="3.19" ARG DISTRO_VERSION="3.20"
FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS builder FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS builder
ARG RUNTIME_VERSION="3.11" ARG RUNTIME_VERSION="3.12"
RUN apk add --no-cache \ RUN apk add --no-cache \
autoconf \ autoconf \

View File

@ -447,10 +447,10 @@ def _provision(cb, stacks):
# Pulumi is still not thread safe # Pulumi is still not thread safe
if _anyPulumi(step): if _anyPulumi(step):
_threads = 1 _threads = 1
else else:
_threads = len(step) _threads = len(step)
with ThreadPoolExecutor(max_workers=_threads)) as group: with ThreadPoolExecutor(max_workers=_threads) as group:
futures = [] futures = []
for stack in step: for stack in step:
if stack.mode != "pulumi": if stack.mode != "pulumi":

View File

@ -1066,7 +1066,7 @@ class Stack(object):
if '.' in key: if '.' in key:
try: try:
(root, leaf) = key.split('.') (root, leaf) = key.split('.')
except ValueError as e: except ValueError:
raise ParameterIllegalValue( raise ParameterIllegalValue(
"Currently only one level hierachies within parameters are supported!" "Currently only one level hierachies within parameters are supported!"
) )