Skip to content

Commit

Permalink
Fixed typo and DockerFile
Browse files Browse the repository at this point in the history
Signed-off-by: Chih Tsung Lu <[email protected]>
  • Loading branch information
ChihTsungLu committed Feb 5, 2025
1 parent 87dfe2f commit 00653e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@ RUN apt-get update && apt-get install build-essential -y \
&& useradd -u 1000 flytekit \
&& chown flytekit: /root \
&& chown flytekit: /home \
&& :
&& :

USER flytekit

ENV FLYTE_INTERNAL_IMAGE="$DOCKER_IMAGE"
2 changes: 1 addition & 1 deletion flytekit/remote/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ class FlyteLaunchPlan(hash_mixin.HashOnReferenceMixin, RemoteEntity, _launch_pla

def __init__(self, id, *args, **kwargs):
if "concurrency" in kwargs:
kwargs["max_parallelism"] = kwargs.pop("concurreny")
kwargs["max_parallelism"] = kwargs.pop("concurrency")
elif "max_parallelism" in kwargs:
import warnings

Expand Down

0 comments on commit 00653e7

Please sign in to comment.