diff --git a/webservice/update_config.py b/webservice/update_config.py index 603538a24a9321cab3decdf383b0e87b037c2188..5143933c6839f9a1a0e7a97f626fae24a536d751 100755 --- a/webservice/update_config.py +++ b/webservice/update_config.py @@ -257,7 +257,7 @@ def main(): print("-" * 80) pyaml = yaml.dump(new_conf, default_flow_style=False) - print(f"Sending the following update:\n {pyaml}") + print(f"# Sending the following update:\n{pyaml}") print("-" * 80) con = zmq.Context() socket = con.socket(zmq.REQ) @@ -274,8 +274,15 @@ def main(): ]) socket.send(f"['{msg}']".encode()) resp = socket.recv_multipart()[0] - print("Configuration now in place is:") - print(resp.decode()) + print("# Configuration now in place is:") + + total_config = yaml.safe_load(resp.decode()) + + print(yaml.dump({ + action: {instrument: { + karabo_id: total_config[action][instrument][karabo_id] + }} + }, default_flow_style=False)) if __name__ == '__main__':