From d1163634e42f45261a5f5ce4b3a17bb1e0f816e1 Mon Sep 17 00:00:00 2001 From: Joseph Mulloy Date: Wed, 20 Sep 2023 11:47:12 -0400 Subject: [PATCH] Print actual data --- scripts/configure_gocd_elastic_agents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/configure_gocd_elastic_agents.py b/scripts/configure_gocd_elastic_agents.py index a1f15070..641f2257 100755 --- a/scripts/configure_gocd_elastic_agents.py +++ b/scripts/configure_gocd_elastic_agents.py @@ -59,7 +59,7 @@ def update_image_in_elastic_profile(host, token, profile_id, new_pod_config, app pod_configuration_value = pod_configuration['value'] logging.info("New pod configuration for {profile_id}") - print("new_pod_config") + print(new_pod_config) logging.info("Diff of old and new pod configuration") print_diff(pod_configuration_value, new_pod_config, f"existing_pod_configuration {profile_id}", f"new_pod_configuration {profile_id}")