Browse Source

Force use of fallback chanpool on App Engine

This is to work around a bug where App Engine, which as of this writing
runs Go 1.2, builds code which uses the "go1.3" build tag. See #67.

This bug is being tracked at:
https://code.google.com/p/googleappengine/issues/detail?id=11346
Carl Jackson 11 years ago
parent
commit
9556e1736d
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      web/chanpool.go
  2. +1
    -1
      web/cpool.go

+ 1
- 1
web/chanpool.go View File

@ -1,4 +1,4 @@
// +build !go1.3
// +build !go1.3 appengine
package web


+ 1
- 1
web/cpool.go View File

@ -1,4 +1,4 @@
// +build go1.3
// +build go1.3,!appengine
package web


Loading…
Cancel
Save