From 2e313de07d25a90397d6889aae88c1659c686ab6 Mon Sep 17 00:00:00 2001 From: Daniel Nichter Date: Wed, 18 Sep 2013 15:34:35 -0700 Subject: [PATCH] Fix the 404 agent not found error msg. --- bin/pt-agent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pt-agent b/bin/pt-agent index 851261d9..ec5f4217 100755 --- a/bin/pt-agent +++ b/bin/pt-agent @@ -5780,7 +5780,7 @@ sub init_agent { my $code = $client->response->code; if ( $code && $code == 404 ) { $logger->fatal("API reports agent not found: the agent has been " - . "deleted, or its UUID (" . ($agent->uuid || '?') + . "deleted, or its UUID (" . ($agent->uuid || '?') . ") " . "is wrong. Check https://cloud.percona.com/agents for a " . "list of active agents."); }