Skip to content

Commit

Permalink
remove 1.6 support for channelz
Browse files Browse the repository at this point in the history
ChannelZ is a debugging feature in grpc. It has not had appengine support; this commit
removes its support for 1.6, too. This change is because in a recent sys/unix commit
1.6 support was broken. See: golang/go#26576 (comment).
  • Loading branch information
jeanbza committed Jul 26, 2018
1 parent 339b6cb commit 865e9e6
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ matrix:
include:
- go: 1.10.x
env: VET=1 RACE=1
- go: 1.6.x
- go: 1.7.x
- go: 1.8.x
- go: 1.9.x
Expand Down
2 changes: 1 addition & 1 deletion channelz/service/func_linux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !appengine
// +build !appengine,!go1.6

/*
*
Expand Down
2 changes: 1 addition & 1 deletion channelz/service/func_nonlinux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !linux appengine
// +build !linux appengine go1.6

/*
*
Expand Down
2 changes: 1 addition & 1 deletion channelz/service/service_sktopt_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build linux,!appengine
// +build linux,!appengine,go1.7
// +build 386 amd64

/*
Expand Down
2 changes: 1 addition & 1 deletion channelz/service/util_sktopt_386_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build 386,linux,!appengine
// +build 386,linux,!appengine,go1.7

/*
*
Expand Down
2 changes: 1 addition & 1 deletion channelz/service/util_sktopt_amd64_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build amd64,linux,!appengine
// +build amd64,linux,!appengine,go1.7

/*
*
Expand Down
2 changes: 1 addition & 1 deletion internal/channelz/types_linux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !appengine
// +build !appengine,!go1.6

/*
*
Expand Down
2 changes: 1 addition & 1 deletion internal/channelz/types_nonlinux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !linux appengine
// +build !linux appengine go1.6

/*
*
Expand Down
2 changes: 1 addition & 1 deletion internal/syscall/syscall_linux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !appengine
// +build !appengine,!go1.6

/*
*
Expand Down
2 changes: 1 addition & 1 deletion internal/syscall/syscall_nonlinux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !linux appengine
// +build !linux appengine go1.6

/*
*
Expand Down

0 comments on commit 865e9e6

Please sign in to comment.