Archived
1
0
Fork 0

Tiny fixes

This commit is contained in:
Mercier Pierre-Olivier 2013-12-01 04:21:04 +01:00
parent 05c7f4b9c6
commit faf03232f4
2 changed files with 2 additions and 3 deletions

View file

@ -9,7 +9,6 @@ use File::Temp qw/tempfile tempdir/;
use IPC::Open3;
use XML::LibXML;
use ACU::LDAP;
use ACU::Log;
use ACU::Process;
@ -101,7 +100,7 @@ sub process_node
my $action = $args->{param}{action} // "launch";
if (! exists $node_actions{$action}) {
log WARN, "Unknown action '$action' for guantanamo node process.";
warn "Unknown action '$action' for guantanamo node process.";
}
return $node_actions{$action}($args);
}