Skip to content

Commit

Permalink
util: show all the logs
Browse files Browse the repository at this point in the history
This is not ideal but wip

Signed-off-by: Sébastien Han <seb@redhat.com>
  • Loading branch information
leseb committed Nov 12, 2018
1 parent 04995e1 commit 39a5d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ func enterContainer(containerName string) error {

// grepForSuccess searches for the word 'SUCCESS' inside the container logs
func grepForSuccess(containerName string) bool {
out, err := getDocker().ContainerLogs(ctx, containerName, types.ContainerLogsOptions{ShowStdout: true, Since: "30s"})
out, err := getDocker().ContainerLogs(ctx, containerName, types.ContainerLogsOptions{ShowStdout: true})
if err != nil {
log.Fatal(err)
}
Expand Down

0 comments on commit 39a5d76

Please sign in to comment.