You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just updated a development version of OTOBO 11.0.x running under Docker: I used the script scripts/update.sh for that. In var/log/update.log I got a lot of messages like:
6927 Message: No packages for your framework version found in this repository, it only contains packages for other framework versions.
6928
6929 Traceback (30):
6930 Module: Kernel::System::Package::PackageOnlineList Line: 1556
6931 Module: Kernel::System::Console::Command::Admin::Package::UpgradeAll::Run Line: 113
6932 Module: (eval) Line: 480
6933 Module: Kernel::System::Console::BaseCommand::Execute Line: 474
6934 Module: Kernel::System::Console::InterfaceConsole::Run Line: 88
6935 Module: /opt/otobo/bin/otobo.Console.pl Line: 35
This would be less confusion if the framework version would be included in the message.
The relevant code is in Kernel/System/Package.pm :
if ( @Packages && !$PackageForRequestedFramework ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message =>
Translatable(
'No packages for your framework version found in this repository, it only contains packages for other framework versions.'
),
);
}
The Message can be easily adapted. IMHO the empty command Translatable() is not useful there too. AFAIK, log messages are never translated.
The text was updated successfully, but these errors were encountered:
I just updated a development version of OTOBO 11.0.x running under Docker: I used the script scripts/update.sh for that. In var/log/update.log I got a lot of messages like:
This would be less confusion if the framework version would be included in the message.
The relevant code is in Kernel/System/Package.pm :
The Message can be easily adapted. IMHO the empty command
Translatable()
is not useful there too. AFAIK, log messages are never translated.The text was updated successfully, but these errors were encountered: