Skip to content

Commit

Permalink
[k8s] fix managed job issue on k8s (#4357)
Browse files Browse the repository at this point in the history
Signed-off-by: nkwangleiGIT <nkwanglei@126.com>
  • Loading branch information
nkwangleiGIT authored Nov 16, 2024
1 parent 88813ce commit e8d18e3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sky/provision/kubernetes/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1693,6 +1693,8 @@ def merge_dicts(source: Dict[Any, Any], destination: Dict[Any, Any]):
else:
destination[key].extend(value)
else:
if destination is None:
destination = {}
destination[key] = value


Expand Down

0 comments on commit e8d18e3

Please sign in to comment.