Skip to content

Commit 36e5da9

Browse files
feat: add [email protected] support
1 parent 5a6b27b commit 36e5da9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ matrix:
1515
env: TEST_WITH_REAL_API=0 GOTESTFLAGS="-race -cpu=1,2,4"
1616
- go: "1.10"
1717
env: TEST_WITH_REAL_API=1
18+
- go: "1.11"
19+
env: TEST_WITH_REAL_API=0 GOTESTFLAGS="-race -cpu=1,2,4"
20+
- go: "1.11"
21+
env: TEST_WITH_REAL_API=1
1822
- go: tip
1923
env: TEST_WITH_REAL_API=0 GOTESTFLAGS="-race -cpu=1,2,4"
2024
allow_failures:

pkg/commands/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ func RunExec(ctx CommandContext, args ExecArgs) error {
8787

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

0 commit comments

Comments
 (0)