Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

e2e: Optimize waiting for application to start #1654

Closed
Timer opened this issue Feb 26, 2017 · 1 comment · Fixed by #3411
Closed

e2e: Optimize waiting for application to start #1654

Timer opened this issue Feb 26, 2017 · 1 comment · Fixed by #3411

Comments

@Timer
Copy link
Contributor

Timer commented Feb 26, 2017

We had to switch from

$ grep -q 'The app is running at:' <(tail -f $tmp_server_log)

to

while true
do
  if grep -q 'The app is running at:' $tmp_server_log; then
    break
  else
    sleep 1
  fi
done

I would appreciate a bash expert one-lining this again with cygwin support.

@Timer
Copy link
Contributor Author

Timer commented Mar 2, 2017

I'm going to remove this from a milestone because it's of no true importance.

@Timer Timer removed this from the 0.9.4 milestone Mar 2, 2017
@Timer Timer changed the title macOS/cygwin kitchensink failure Optimize waiting for application to start Mar 2, 2017
@Timer Timer changed the title Optimize waiting for application to start e2e: Optimize waiting for application to start Mar 2, 2017
@lock lock bot locked and limited conversation to collaborators Jan 21, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants