We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a17500 commit 7747368Copy full SHA for 7747368
php/EE/Runner.php
@@ -857,8 +857,10 @@ private function trigger_migration( $version ) {
857
if ( ! $this->migrate() ) {
858
EE::error( 'There was some error while migrating. Please check logs.' );
859
}
860
- Option::set( 'version', $version );
861
- \EE\Service\Utils\set_nginx_proxy_version_conf();
+ if ( $version !== Option::get( 'version' ) ) {
+ Option::set( 'version', $version );
862
+ \EE\Service\Utils\set_nginx_proxy_version_conf();
863
+ }
864
865
866
/**
0 commit comments