Skip to content

Commit

Permalink
fix databricks job request serialization (flyteorg#2286)
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Brogan <[email protected]>
  • Loading branch information
pbrogan12 authored Apr 4, 2024
1 parent a478635 commit e121d35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flytekit/models/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ def from_flyte_idl(cls, pb2_object):
return cls(
image=pb2_object.image,
command=pb2_object.command,
args=pb2_object.args,
args=[arg for arg in pb2_object.args],
resources=Resources.from_flyte_idl(pb2_object.resources),
env={kv.key: kv.value for kv in pb2_object.env},
config={kv.key: kv.value for kv in pb2_object.config},
Expand Down

0 comments on commit e121d35

Please sign in to comment.