change noop to info, and some fixes

This commit is contained in:
Oliver Gorwits
2017-11-25 12:29:08 +00:00
parent de594c647f
commit 26b4bdb907
16 changed files with 54 additions and 58 deletions

View File

@@ -1,4 +1,4 @@
package App::Netdisco::Worker::Plugin::Vlan::Native;
package App::Netdisco::Worker::Plugin::Vlan::Core;
use Dancer ':syntax';
use App::Netdisco::Worker::Plugin;
@@ -18,7 +18,7 @@ register_worker({ phase => 'early', driver => 'snmp' }, sub {
vars->{'iid'} = get_iid($snmp, vars->{'port'})
or return Status->error("Failed to get port ID for [$pn] from $device");
return Status->noop("Vlan set can continue.");
return Status->info("Vlan set can continue.");
});
register_worker({ phase => 'main', driver => 'snmp' }, sub {