Skip to content

Commit

Permalink
feat: add [email protected] support
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinBrosse authored Sep 3, 2019
1 parent 5a6b27b commit 36e5da9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ matrix:
env: TEST_WITH_REAL_API=0 GOTESTFLAGS="-race -cpu=1,2,4"
- go: "1.10"
env: TEST_WITH_REAL_API=1
- go: "1.11"
env: TEST_WITH_REAL_API=0 GOTESTFLAGS="-race -cpu=1,2,4"
- go: "1.11"
env: TEST_WITH_REAL_API=1
- go: tip
env: TEST_WITH_REAL_API=0 GOTESTFLAGS="-race -cpu=1,2,4"
allow_failures:
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func RunExec(ctx CommandContext, args ExecArgs) error {

// --timeout
if args.Timeout > 0 {
logrus.Debugf("Setting up a global timeout of %d seconds", args.Timeout)
logrus.Debugf("Setting up a global timeout of %f seconds", args.Timeout)
// FIXME: avoid use of log.Fatalf here
go func() {
time.Sleep(time.Duration(args.Timeout*1000) * time.Millisecond)
Expand Down

0 comments on commit 36e5da9

Please sign in to comment.