Skip to content

Commit

Permalink
Upgrade golang from v1.17.2 to v1.17.3
Browse files Browse the repository at this point in the history
The old version has a bug in net/http package causing deadlocks when
the number of open files exceeds the max connections per host. The new
version [fixes it](golang/go#49077).
  • Loading branch information
lezh committed Dec 2, 2021
1 parent a849413 commit c3dc5f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Mount the gcsfuse to /mnt/gcs:
# > docker run --privileged --device /fuse -v /mnt/gcs:/gcs:rw,rshared gcsfuse

FROM golang:1.17.2-alpine as builder
FROM golang:1.17.3-alpine as builder

RUN apk add git

Expand Down
2 changes: 1 addition & 1 deletion tools/package_gcsfuse_docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Copy the gcsfuse packages to the host:
# > docker run -it -v /tmp:/output gcsfuse-release cp -r /packages /output

FROM golang:1.17.2 as builder
FROM golang:1.17.3 as builder

RUN apt-get update -qq && apt-get install -y ruby ruby-dev rubygems build-essential rpm && gem install --no-document fpm

Expand Down

0 comments on commit c3dc5f4

Please sign in to comment.