From 7fec19dad29ece3adb9094b52ca8a1ebe66f0e29 Mon Sep 17 00:00:00 2001 From: Dmitri Gekhtman <62982571+DmitriGekhtman@users.noreply.github.com> Date: Fri, 22 Jan 2021 12:07:25 -0800 Subject: [PATCH] [kubernetes][operator][minutiae] Backwards compatibility of operator (#13623) --- python/ray/operator/operator_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/operator/operator_utils.py b/python/ray/operator/operator_utils.py index 94d2a00cf..08afda94f 100644 --- a/python/ray/operator/operator_utils.py +++ b/python/ray/operator/operator_utils.py @@ -95,4 +95,4 @@ def get_cluster_owner_reference( def translate(configuration: Dict[str, Any], dictionary: Dict[str, str]) -> Dict[str, Any]: - return {dictionary[field]: configuration[field] for field in configuration} + return {dictionary[field]: configuration[field] for field in dictionary}