Fix delay publish deadlock (#13583)

This commit is contained in:
Albumen Kevin 2023-12-27 23:37:59 +08:00 committed by GitHub
parent 745ba45ea4
commit 180ff9785a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -488,6 +488,9 @@ public class DefaultModuleDeployer extends AbstractDeployer<ModuleModel> impleme
if (!sc.isExported()) {
return;
}
if (sc.shouldDelay()) {
return;
}
sc.register(true);
}