Skip to content

Commit

Permalink
Issue #1216: Calling Maint::Config::Rebuild is not necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Sep 9, 2021
1 parent 39a86fd commit a8038ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kernel/System/MigrateFromOTRS/OTOBOMigrateConfigFromOTRS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ sub Run {
my %Result;
$Result{Message} = $Self->{LanguageObject}->Translate("Migrate configuration settings.");
$Result{Comment} = $Self->{LanguageObject}->Translate(<<'END_COMMENT');
The merged Configuration could not be deployed. Please try to fix the configuration
by running these console commands: Admin::Config::ListInvalid, Admin::Config::FixInvalid, and Maint::Config::Rebuild."
The merged configuration could not be deployed because it contain invalid values. Please try to fix the configuration
by running these commands: "bin/otobo.Console.pl Admin::Config::ListInvalid" and "bin/otobo.Console.pl Admin::Config::FixInvalid".
END_COMMENT
$Result{Successful} = 0;

Expand Down

1 comment on commit a8038ce

@bschmalhofer
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like Maint::Config::Rebuild deploys all settings. This makes is very useful if the OTRS had SecureMode turned on. As the migration explicitiy turns SecureMode off, but does not necessarily deploy it.

Please sign in to comment.