fixed: Warnings about API changes in POE::Component::IKC::ClientLite
This commit is contained in:
parent
94f1f3506c
commit
c75ef5e044
6 changed files with 12 additions and 9 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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 {
|
|||
</script>
|
||||
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),
|
||||
|
|
|
|||
|
|
@ -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))),
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue