From 3fb53189d05669a010e81540d2398cb32d54949b Mon Sep 17 00:00:00 2001 From: Yehuda Sadeh Date: Sun, 4 Aug 2013 20:57:25 -0700 Subject: [PATCH] agent name should also contain port number otherwise multiple agents per machines will have the same id Signed-off-by: Yehuda Sadeh --- teuthology/task/radosgw-agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/radosgw-agent.py b/teuthology/task/radosgw-agent.py index 40920ff6af..e2c6df9c1f 100644 --- a/teuthology/task/radosgw-agent.py +++ b/teuthology/task/radosgw-agent.py @@ -44,7 +44,7 @@ def run_radosgw_agent(ctx, client, config): dest_access, dest_secret = rgw_utils.get_zone_system_keys(ctx, dest_client, dest_zone) port = config.get('port', 8000) - daemon_name = '{host}.syncdaemon'.format(host=remote.name) + daemon_name = '{host}.{port}.syncdaemon'.format(host=remote.name, port=port) return remote.run( args=[ -- 2.39.5