Skip to content

Commit

Permalink
update to Go 1.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielc committed May 1, 2018
1 parent da74f68 commit 09c8218
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile_build_ubuntu32
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN wget -q https://github.com/google/protobuf/releases/download/v${PROTO_VERSIO

# Install go
ENV GOPATH /root/go
ENV GO_VERSION 1.9.2
ENV GO_VERSION 1.10.2
ENV GO_ARCH 386
RUN wget -q https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz; \
tar -C /usr/local/ -xf /go${GO_VERSION}.linux-${GO_ARCH}.tar.gz ; \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_build_ubuntu64
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN wget -q https://github.com/google/protobuf/releases/download/v${PROTO_VERSIO

# Install go
ENV GOPATH /root/go
ENV GO_VERSION 1.9.2
ENV GO_VERSION 1.10.2
ENV GO_ARCH amd64
RUN wget -q https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz; \
tar -C /usr/local/ -xf /go${GO_VERSION}.linux-${GO_ARCH}.tar.gz ; \
Expand Down
8 changes: 4 additions & 4 deletions server/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,22 +104,22 @@ func TestServer_Pprof_Index(t *testing.T) {
{
path: "/debug/pprof/block",
code: http.StatusOK,
contentType: "text/plain; charset=utf-8",
contentType: "application/octet-stream",
},
{
path: "/debug/pprof/goroutine",
code: http.StatusOK,
contentType: "text/plain; charset=utf-8",
contentType: "application/octet-stream",
},
{
path: "/debug/pprof/heap",
code: http.StatusOK,
contentType: "text/plain; charset=utf-8",
contentType: "application/octet-stream",
},
{
path: "/debug/pprof/threadcreate",
code: http.StatusOK,
contentType: "text/plain; charset=utf-8",
contentType: "application/octet-stream",
},
}
for _, tc := range testCases {
Expand Down
2 changes: 1 addition & 1 deletion services/influxdb/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ func TestService_Open_LinkSubscriptions(t *testing.T) {
}},
secondClusters: map[string]clusterInfo{
testClusterName: {
// db1 had been dropped
// db1 had been dropped
}},
tokens: []string{
randomToken,
Expand Down

0 comments on commit 09c8218

Please sign in to comment.