-
Notifications
You must be signed in to change notification settings - Fork 39
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
Should exit if --input-file
replayed all requests
#456
Comments
+1 #!/bin/bash
INPUTFILE="input.gor"
LOGFILE="/tmp/gor.log"
MATCH="FileInput: end of file"
gor --input-file "$filename" --output-http="http://www.test.com" 2>&1 | tee $LOGFILE &
while sleep 5
do
if fgrep --quiet "$MATCH" "$LOGFILE"
then
exit 0
fi
done |
@buger I see this was closed. So it won't be included in the next release? |
Sorry for the confusion. It is fixed in upcoming 0.16.1 which will be release today. I will notify you here :) |
@buger Thanks you! |
This issue is not fixed, it'll still hang on --file-input. OS X binary, version 0.16.1. |
I really look like a lock somewhere in --input-file, can't find it yet 😭 |
Hello @buger, I think this may still be an issue. I'm using a similar workaround to the one shown above. I'm running version 1.2.0. Love the project! |
Verified too on my end, this should be tracked on a separate issue. |
Right now it just hangs and does nothing.
The text was updated successfully, but these errors were encountered: