changeset 1838:7797f050a3b0 1.6-branchpoint

Fix make for-release to not rely on logging PR 2696 Reviewed-by: ebaron, jerboaa Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2015-September/016313.html Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2015-November/016825.html
author Omair Majid <omajid@redhat.com>
date Mon, 21 Sep 2015 13:12:40 -0400
parents 99c45a7c04b1
children 387b2f113734
files distribution/tools/verify-archetype-multimodule.sh
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/distribution/tools/verify-archetype-multimodule.sh	Mon Nov 09 16:10:27 2015 -0500
+++ b/distribution/tools/verify-archetype-multimodule.sh	Mon Sep 21 13:12:40 2015 -0400
@@ -57,9 +57,9 @@
 
 
 function launch_and_wait_for_web_storage() {
-  $THERMOSTAT_EXE -Tbg $WSS_PID web-storage-service > $WSS_OUTPUT 2>&1
+  $THERMOSTAT_EXE -Tbg $WSS_PID -J-Dthermostat.agent.verbose=true web-storage-service > $WSS_OUTPUT 2>&1
   TRIES=0
-  while [[ ! -f $WSS_OUTPUT || ! `grep -e "Agent id:" < $WSS_OUTPUT` ]]; do
+  while [[ ! -f $WSS_OUTPUT || ! `grep -e "Agent started." < $WSS_OUTPUT` ]]; do
     # don't wait forever
     if [ $TRIES -ge 20 ]; then
       return 1