Commit b9f2e96c811968395724f3ed2be04d24ec5a7820

Authored by George Vlahavas
1 parent 97fe60fba2

Remove sleep

Showing 1 changed file with 0 additions and 1 deletions

kea_testing.groovy View file @ b9f2e96
... ... @@ -28,7 +28,6 @@
28 28 echo '*** TESTS ***'
29 29 echo '*************'
30 30 /* Here do your tests */
31   - sleep 90
32 31 try {
33 32 // Get Keycloak auth token
34 33 String token = sh(label: "get_keycloak_token", script: "curl -s -X POST $KEYCLOAK_URL -H 'Content-Type: application/x-www-form-urlencoded' -d 'username=$USER' -d 'password=$PASSWORD' -d 'grant_type=password' -d 'client_id=$CLIENT_ID' | sed 's/.*access_token\":\"//g' | sed 's/\".*//g'", returnStdout: true)