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