From 9556e1736d72993303989f72b3fef2450d121d92 Mon Sep 17 00:00:00 2001 From: Carl Jackson Date: Sat, 1 Nov 2014 17:06:20 -0700 Subject: [PATCH] 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 --- web/chanpool.go | 2 +- web/cpool.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/chanpool.go b/web/chanpool.go index fbe2977..26b675e 100644 --- a/web/chanpool.go +++ b/web/chanpool.go @@ -1,4 +1,4 @@ -// +build !go1.3 +// +build !go1.3 appengine package web diff --git a/web/cpool.go b/web/cpool.go index 59f8764..a95333c 100644 --- a/web/cpool.go +++ b/web/cpool.go @@ -1,4 +1,4 @@ -// +build go1.3 +// +build go1.3,!appengine package web