I am having many log entries with:
Code: Select all
-e: Use of uninitialized value within %Queues in hash element at /opt/otrs//Kernel/Output/HTML/Dashboard/TicketQueueOverview.pm line 163.
after this
Code: Select all
sub Run {
my ( $Self, %Param ) = @_;
Code: Select all
# get log object
my $LogObject = $Kernel::OM->Get('Kernel::System::Log');
Code: Select all
my $LimitGroup = $Self->{Config}->{QueuePermissionGroup} || 0;
Code: Select all
# Gather ticket count for corresponding Queue <-> State.
for my $QueueID (@QueueIDs) {
Code: Select all
$LogObject->Log(
Priority => 'error',
Message => "searching for error in Queue with QueueID: '$QueueID'! ",
);
Code: Select all
push @{ $Results{ $Queues{$QueueID} } },
$TicketCountByQueueID->{$QueueID} ? $TicketCountByQueueID->{$QueueID} : 0;
}
The QueueID is 999999
And I cannot find this queue?
Here the log entry:
Code: Select all
Message: searching for error in Queue with QueueID: '999999'!