-
Notifications
You must be signed in to change notification settings - Fork 91
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
Cannot use ready checker and log line receiver together #84
Comments
For you interest, I made a workaround for this problem creating a LogLineReciever that can also be used as readyChecker.
Hope it helps you for now. |
I think that LogLineReceiver is limited and the same time not properly working abstraction. I've just created #93 to address it in new version. |
Defienietly easier to just log it during checking:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for a great library!
I've found that I can use either
withReadyChecker(DockerReadyChecker.LogLineContains("foo"))
orwithLogLineReceiver(LogLineReceiver(...))
, but I can't use both at the same time. If I add the log line receiver then the ready checker never fires.Is this expected?
Ideally I'd like to do the following:
The text was updated successfully, but these errors were encountered: