Skip to content

Commit 2462253

Browse files
committed
Upgraded to go 1.11
1 parent f350a23 commit 2462253

File tree

3 files changed

+4
-65
lines changed

3 files changed

+4
-65
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
language: go
1818

1919
go:
20-
- 1.10.x
20+
- 1.11.x
2121

2222
env:
23-
- DEP_VERSION="0.4.1"
23+
- DEP_VERSION="0.5.0"
2424

2525
before_install:
2626
# Download the binary to bin folder in $GOPATH

Gopkg.lock

Lines changed: 0 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/controller/sparkapplication/submission_runner.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ type appStateUpdate struct {
4949

5050
func newSparkSubmitRunner(workers int, appStateReportingChan chan<- *appStateUpdate) *sparkSubmitRunner {
5151
return &sparkSubmitRunner{
52-
workers: workers,
53-
queue: make(chan *submission, workers),
52+
workers: workers,
53+
queue: make(chan *submission, workers),
5454
appStateReportingChan: appStateReportingChan,
5555
}
5656
}

0 commit comments

Comments
 (0)