From 76536e8cf06749693a0817417059da3b23092bd8 Mon Sep 17 00:00:00 2001 From: Drake Date: Mon, 18 Sep 2006 20:46:45 +0000 Subject: [PATCH] Fix command-line Spectre ping not using the IP address from the config. --- docs/changelog/7.x.x.txt | 2 +- sbin/spectre.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index bf424b403..e82e0eaf8 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -7,7 +7,7 @@ - Added a "run" link to the scheduler and the running workflows listings to aid in debugging workflow errors. - fix: profile fields not validated by WebGUI::User - + - fix: Spectre pings not using correct IP address 7.0.7 - rfe: Image Management (funded by Formation Design Systems) diff --git a/sbin/spectre.pl b/sbin/spectre.pl index 0edaf1da3..884750501 100644 --- a/sbin/spectre.pl +++ b/sbin/spectre.pl @@ -111,7 +111,7 @@ if ($shutdown) { sub ping { my $remote = create_ikc_client( port=>$config->get("port"), - ip=>'127.0.0.1', + ip=>$config->get("ip"), name=>rand(100000), timeout=>10 );