We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sometimes, when SQL db communication error occurs, otrs.Daemon.pl generaters errors like
ERROR: OTRS-otrs.Daemon.pl - Daemon Kernel::System::Daemon::DaemonModules::SystemConfigurationSyncManager-1 Perl: 5.32.1 OS: linux Time: Mon Jan 27 15:53:27 2025 Message: There was an error executing ConfigurationDeploySync: Use of uninitialized value $CleanupSuccess in numeric ne (!=) at /opt/otrs/Kernel/System/SysConfig.pm line 3735. ERROR: OTRS-otrs.Daemon.pl - Daemon Kernel::System::Daemon::DaemonModules::SystemConfigurationSyncManager-1 Perl: 5.32.1 OS: linux Time: Mon Jan 27 15:53:27 2025 Message: There are invalid deployments in the database that could not be removed! Traceback (19179): Module: Kernel::System::SysConfig::ConfigurationDeploySync Line: 3736 Module: (eval) Line: 130 Module: Kernel::System::Daemon::DaemonModules::SystemConfigurationSyncManager::Run Line: 117 Module: (eval) Line: 332 Module: main::Start Line: 332 Module: /opt/otrs/bin/otrs.Daemon.pl Line: 153 Traceback (19179): Module: Kernel::System::Daemon::DaemonModules::BaseTaskWorker::_HandleError Line: 53 Module: Kernel::System::Daemon::DaemonModules::SystemConfigurationSyncManager::Run Line: 136 Module: (eval) Line: 332 Module: main::Start Line: 332 Module: /opt/otrs/bin/otrs.Daemon.pl Line: 153
in SystemConfigurationSyncManagerERR.log.
SystemConfigurationSyncManagerERR.log
ConfigurationDeploySync should handle SQL connection problems signalized by DeploymentListCleanup correctly.
ConfigurationDeploySync
DeploymentListCleanup
$CleanupSuccess is uninitialized on db communication error and ConfigurationDeploySync does not handle this scenario correctly.
$CleanupSuccess
Steps to reproduce the behavior:
return;
Znuny/Kernel/System/SysConfig/DB.pm
Line 5346 in ef375ac
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sometimes, when SQL db communication error occurs, otrs.Daemon.pl generaters errors like
in
SystemConfigurationSyncManagerERR.log
.Environment
Expected behavior
ConfigurationDeploySync
should handle SQL connection problems signalized byDeploymentListCleanup
correctly.Actual behavior
$CleanupSuccess
is uninitialized on db communication error andConfigurationDeploySync
does not handle this scenario correctly.How to reproduce
Steps to reproduce the behavior:
return;
beforeZnuny/Kernel/System/SysConfig/DB.pm
Line 5346 in ef375ac
The text was updated successfully, but these errors were encountered: