@@ -160,7 +160,7 @@ private static void gitCloneMonitoringExporter() throws Exception {
160
160
logger .info (" Cloning and building Weblogic Server Monitoring Exporter application" );
161
161
// git clone exporter project
162
162
removeAndClone
163
- .append (" git clone -b alert https://github.com/oracle/weblogic-monitoring-exporter.git " )
163
+ .append (" git clone https://github.com/oracle/weblogic-monitoring-exporter.git " )
164
164
.append (monitoringExporterSrcDir );
165
165
TestUtils .exec (removeAndClone .toString ());
166
166
}
@@ -824,7 +824,6 @@ public void test19_EndToEndViaChart() throws Exception {
824
824
installPrometheusGrafanaViaChart ();
825
825
fireAlert ();
826
826
} finally {
827
- /*
828
827
uninstallWebHookPrometheusGrafanaViaChart ();
829
828
uninstallMySQL ();
830
829
@@ -836,8 +835,6 @@ public void test19_EndToEndViaChart() throws Exception {
836
835
if (operator1 != null ) {
837
836
operator1 .destroy ();
838
837
}
839
- */
840
-
841
838
}
842
839
testCompletedSuccessfully = true ;
843
840
logger .info ("SUCCESS - " + testMethodName );
@@ -854,8 +851,8 @@ private void fireAlert() throws Exception {
854
851
855
852
TestUtils .checkPodReady ("domain1-admin-server" , "default" );
856
853
TestUtils .checkPodReady ("domain1-managed-server-1" , "default" );
857
- //sleep for 1.30 min to fire alert
858
- Thread .sleep (90000 );
854
+ //sleep for 2 min to fire alert
855
+ Thread .sleep (120000 );
859
856
String webhookPod = getPodName ("webhook" , "webhook" );
860
857
String command = "kubectl -n webhook logs " + webhookPod ;
861
858
ExecResult webhookResult = TestUtils .exec (command );
0 commit comments