@@ -1624,21 +1624,14 @@ public void restartManagedServerUsingServerStartPolicy(String msName) throws Exc
1624
1624
*
1625
1625
* @param webappName - Web App Name to be deployed
1626
1626
* @param scriptName - a shell script to build WAR, EAR or JAR file and deploy the App in the
1627
- * admin pod //@param archiveExt - archive extention //@param infoDirNames - archive
1628
- * information dir location
1627
+ * admin pod
1629
1628
* @param username - weblogic user name
1630
1629
* @param password - weblogc password
1631
1630
* @param args - optional args to add for script if needed
1632
1631
* @throws Exception
1633
1632
*/
1634
1633
private void callShellScriptToBuildDeployAppInPod (
1635
- String webappName ,
1636
- String scriptName ,
1637
- // String archiveExt,
1638
- // String infoDirNames,
1639
- String username ,
1640
- String password ,
1641
- String ... args )
1634
+ String webappName , String scriptName , String username , String password , String ... args )
1642
1635
throws Exception {
1643
1636
1644
1637
String nodeHost = getHostNameForCurl ();
@@ -1675,10 +1668,6 @@ private void callShellScriptToBuildDeployAppInPod(
1675
1668
.append (" " )
1676
1669
.append (clusterName )
1677
1670
.append (" " )
1678
- // .append(infoDirNames)
1679
- // .append(" ")
1680
- // .append(archiveExt)
1681
- // .append(" ")
1682
1671
.append (String .join (" " , args ).toString ())
1683
1672
.append ("'" );
1684
1673
@@ -1726,7 +1715,7 @@ public void buildDeployJavaAppInPod(
1726
1715
String scriptPathOnHost = BaseTest .getAppLocationOnHost () + "/" + scriptName ;
1727
1716
String scriptPathInPod = BaseTest .getAppLocationInPod () + "/" + scriptName ;
1728
1717
1729
- // Default velues to build archive file
1718
+ // Default values to build archive file
1730
1719
final String initInfoDirName = "WEB-INF" ;
1731
1720
String archiveExt = "war" ;
1732
1721
String infoDirName = initInfoDirName ;
@@ -1789,7 +1778,7 @@ public void buildDeployWebServiceAppInPod(
1789
1778
String scriptPathOnHost = BaseTest .getAppLocationOnHost () + "/" + scriptName ;
1790
1779
String scriptPathInPod = BaseTest .getAppLocationInPod () + "/" + scriptName ;
1791
1780
1792
- // Default velues to build archive file
1781
+ // Default values to build archive file
1793
1782
final String initInfoDirName = "WEB-INF" ;
1794
1783
String archiveExt = "war" ;
1795
1784
String infoDirName = initInfoDirName ;
0 commit comments