Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f7c9971

Browse files
AlexanderYeremeyevAlexanderYeremeyev
authored andcommitted
SOAPUIOS-500 plugins loaded only once during soap launch process.
1 parent ad27442 commit f7c9971

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

soapui/src/main/java/com/eviware/soapui/SoapUI.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -788,6 +788,7 @@ private static final class SoapUIRunner implements Runnable {
788788
public void run() {
789789
boolean isDebug = java.lang.management.ManagementFactory.getRuntimeMXBean().
790790
getInputArguments().toString().indexOf("-agentlib:jdwp") > 0;
791+
StandaloneSoapUICore standaloneSoapUICore = new StandaloneSoapUICore(true);
791792
SoapUIUpdateProvider updateProvider = SoapUIAutoUpdaterUtils.getProvider();
792793
if (!isDebug && SoapUI.getSettings().getBoolean(VersionUpdateSettings.AUTO_CHECK_VERSION_UPDATE)) {
793794
updateProvider.start();
@@ -804,8 +805,7 @@ public void run() {
804805
brandedTitleExt = "";
805806
}
806807

807-
startSoapUI(mainArgs, "SoapUI " + SOAPUI_VERSION + " " + brandedTitleExt,
808-
new StandaloneSoapUICore(true));
808+
startSoapUI(mainArgs, "SoapUI " + SOAPUI_VERSION + " " + brandedTitleExt, standaloneSoapUICore);
809809

810810
if (getSettings().getBoolean(UISettings.SHOW_STARTUP_PAGE) && !isBrowserDisabled()) {
811811
SwingUtilities.invokeLater(new Runnable() {

0 commit comments

Comments
 (0)