Skip to content

Commit

Permalink
fix compile error of connCheck.go (#1048)
Browse files Browse the repository at this point in the history
* fix compile error of connCheck.go

* remove "appengine" build tag
  • Loading branch information
shogo82148 committed Jan 5, 2020
1 parent b66d043 commit 8723940
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conncheck.go
Expand Up @@ -6,7 +6,7 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at http://mozilla.org/MPL/2.0/.

// +build !windows,!appengine
// +build linux darwin

package mysql

Expand Down
2 changes: 1 addition & 1 deletion conncheck_dummy.go
Expand Up @@ -6,7 +6,7 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at http://mozilla.org/MPL/2.0/.

// +build windows appengine
// +build !linux,!darwin

package mysql

Expand Down
2 changes: 1 addition & 1 deletion conncheck_test.go
Expand Up @@ -6,7 +6,7 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at http://mozilla.org/MPL/2.0/.

// +build go1.10,!windows
// +build linux darwin

package mysql

Expand Down

0 comments on commit 8723940

Please sign in to comment.