fix: Spectre::Admin Error Message

This commit is contained in:
Martin Kamerbeek 2006-08-29 14:13:14 +00:00
parent 283da1482e
commit 6f86645097
2 changed files with 3 additions and 2 deletions

View file

@ -16,6 +16,7 @@
- fix: Matrix 'Can instantiate template' and also fixed a bug where the style - fix: Matrix 'Can instantiate template' and also fixed a bug where the style
and printable style were not set for the Collabs attached to the listings and printable style were not set for the Collabs attached to the listings
in the Matrix (Martin Kamerbeek / Procolix) in the Matrix (Martin Kamerbeek / Procolix)
- fix: Spectre::Admin Error Message (xhunter)
7.0.6 7.0.6

View file

@ -205,9 +205,9 @@ sub runTests {
} else { } else {
my $response = $response->content; my $response = $response->content;
if ($response eq "subnet") { if ($response eq "subnet") {
print "ERROR: Spectre cannot communicate with WebGUI for $key, perhaps you need to adjust the spectreSubnets setting in this config file.\n"; print "ERROR: Spectre cannot communicate with WebGUI. Perhaps you need to adjust the spectreSubnets setting in this config file: $key.\n";
} elsif ($response eq "spectre") { } elsif ($response eq "spectre") {
print "ERROR: WebGUI connot communicate with Spectre for $key, perhaps you need to adjust the spectreIp or spectrePort setting the this config file."; print "ERROR: WebGUI cannot communicate with Spectre. Perhaps you need to adjust the spectreIp or spectrePort setting the this config file: $key.";
} elsif ($response ne "success") { } elsif ($response ne "success") {
print "ERROR: Spectre received an invalid response from WebGUI while testing $key\n"; print "ERROR: Spectre received an invalid response from WebGUI while testing $key\n";
} }