1
0
Fork 0
mirror of https://github.com/NixOS/hydra.git synced 2024-10-18 17:02:28 -04:00

Event: interested -> interestedIn

This commit is contained in:
Graham Christensen 2021-12-21 14:27:33 -05:00
parent e84bbc7f90
commit 2db422f7b0
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ sub new_event {
}, $self;
}
sub interested {
sub interestedIn {
my ($self, $plugin) = @_;
return $self->{"event"}->interestedIn($plugin);

View file

@ -195,7 +195,7 @@ sub dispatch_task {
return 0;
}
if (!$task->{"event"}->interested($plugin)) {
if (!$task->{"event"}->interestedIn($plugin)) {
$self->{"prometheus"}->inc("notify_plugin_not_interested", $event_labels);
return 0;
}