Author: rob.stryker(a)jboss.com
Date: 2011-10-14 08:21:15 -0400 (Fri, 14 Oct 2011)
New Revision: 35656
Modified:
trunk/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java
Log:
https://issues.jboss.org/browse/JBIDE-9913 - need to handle null-set behaviour mode as
local
Modified:
trunk/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java
===================================================================
---
trunk/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java 2011-10-14
12:21:02 UTC (rev 35655)
+++
trunk/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java 2011-10-14
12:21:15 UTC (rev 35656)
@@ -169,11 +169,11 @@
}
public static IServer createServer(IRuntime runtime, String serverID) throws
CoreException {
- return ServerCreationUtils.createServer2(runtime, serverID);
+ return ServerCreationUtils.createServer2(runtime, serverID, serverID,
"openshift");
}
public static IServer createServer(IRuntime runtime, IServerType serverType, String
serverName) throws CoreException {
- return ServerCreationUtils.createServer2(runtime, serverType, serverName);
+ return ServerCreationUtils.createServer2(runtime, serverType, serverName,
"openshift");
}
}