diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 5cd54fa7d..cea21ccfe 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,3 +1,6 @@ +7.10.31 + - fixed: Warnings about API changes in POE::Component::IKC::ClientLite + 7.10.30 - fixed: Do not generate the Not Found page when JS or CSS is requested. In admin mode, this is bypassed so that admins can see which pages are really missing and can easily add them. - fixed: Allow IS NULL/IS NOT NULL queries in the Asset Report. diff --git a/lib/WebGUI/Operation/Spectre.pm b/lib/WebGUI/Operation/Spectre.pm index fe6253eb2..fd0357c76 100644 --- a/lib/WebGUI/Operation/Spectre.pm +++ b/lib/WebGUI/Operation/Spectre.pm @@ -119,7 +119,7 @@ sub www_spectreStatus { $session->http->setCacheControl("none"); - my $remote = create_ikc_client( + my $remote = POE::Component::IKC::ClientLite->spawn( port=>$session->config->get("spectrePort"), ip=>$session->config->get("spectreIp"), name=>rand(100000), @@ -203,7 +203,7 @@ do subnet checking, yet. sub spectreTest{ my $session = shift; - my $remote = create_ikc_client( + my $remote = POE::Component::IKC::ClientLite->spawn( port=>$session->config->get("spectrePort"), ip=>$session->config->get("spectreIp"), name=>rand(100000), diff --git a/lib/WebGUI/Operation/Workflow.pm b/lib/WebGUI/Operation/Workflow.pm index fd3d77c75..a484d9e14 100644 --- a/lib/WebGUI/Operation/Workflow.pm +++ b/lib/WebGUI/Operation/Workflow.pm @@ -318,7 +318,7 @@ sub www_editWorkflowPriority { } # make the request - my $remote = create_ikc_client( + my $remote = POE::Component::IKC::ClientLite->spawn( port=>$session->config->get("spectrePort"), ip=>$session->config->get("spectreIp"), name=>rand(100000), @@ -560,7 +560,7 @@ sub www_showRunningWorkflows { ENDCODE - my $remote = create_ikc_client( + my $remote = POE::Component::IKC::ClientLite->spawn( port=>$session->config->get("spectrePort"), ip=>$session->config->get("spectreIp"), name=>rand(100000), diff --git a/lib/WebGUI/Workflow/Spectre.pm b/lib/WebGUI/Workflow/Spectre.pm index 090223384..b205ee2a6 100644 --- a/lib/WebGUI/Workflow/Spectre.pm +++ b/lib/WebGUI/Workflow/Spectre.pm @@ -72,7 +72,7 @@ sub notify { my $module = shift; my $params = shift; my ($config, $error) = $self->session->quick("config", "errorHandler"); - my $remote = create_ikc_client( + my $remote = POE::Component::IKC::ClientLite->spawn( port=>$config->get("spectrePort"), ip=>$config->get("spectreIp"), name=> (time() . int(rand(10000000))), diff --git a/sbin/spectre.pl b/sbin/spectre.pl index eda630188..0857c25dd 100755 --- a/sbin/spectre.pl +++ b/sbin/spectre.pl @@ -145,7 +145,7 @@ elsif ($daemon) { } sub ping { - my $remote = create_ikc_client( + my $remote = POE::Component::IKC::ClientLite->spawn( port=>$config->get("port"), ip=>$config->get("ip"), name=>rand(100000), @@ -161,7 +161,7 @@ sub ping { } sub getStatusReport { - my $remote = create_ikc_client( + my $remote = POE::Component::IKC::ClientLite->spawn( port=>$config->get("port"), ip=>$config->get("ip"), name=>rand(100000), diff --git a/t/Spectre/Workflow.t b/t/Spectre/Workflow.t index 013aa2670..91c8fbe83 100644 --- a/t/Spectre/Workflow.t +++ b/t/Spectre/Workflow.t @@ -64,7 +64,7 @@ SKIP: { }, ); $instance->start; - my $remote = create_ikc_client( + my $remote = POE::Component::IKC::ClientLite->spawn( port => $port, ip => $ip, name => rand(100000), @@ -104,7 +104,7 @@ TODO: { sub spectre_ping { my $spectreConfig = shift; - my $remote = create_ikc_client( + my $remote = POE::Component::IKC::ClientLite->spawn( port => $spectreConfig->get("port"), ip => $spectreConfig->get("ip"), name => rand(100000),