[tor-commits] [snowflake/master] Updating from legacy (import "appengine") packages

arlo at torproject.org arlo at torproject.org
Thu Oct 12 21:16:07 UTC 2017


commit fd217ffaab7aaae6014f0a2436d9680728e18bbd
Author: Arlo Breault <arlolra at gmail.com>
Date:   Thu Oct 12 17:15:08 2017 -0400

    Updating from legacy (import "appengine") packages
    
     * Ran, `go get google.golang.org/appengine/cmd/aefix`
       from https://github.com/golang/appengine
---
 appengine/reflect.go | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/appengine/reflect.go b/appengine/reflect.go
index f6b5336..c48bfe6 100644
--- a/appengine/reflect.go
+++ b/appengine/reflect.go
@@ -8,8 +8,10 @@ import (
 	"net/url"
 	"time"
 
-	"appengine"
-	"appengine/urlfetch"
+	"golang.org/x/net/context"
+	"google.golang.org/appengine"
+	"google.golang.org/appengine/log"
+	"google.golang.org/appengine/urlfetch"
 )
 
 const (
@@ -18,7 +20,7 @@ const (
 	urlFetchTimeout = 20 * time.Second
 )
 
-var context appengine.Context
+var context_ context.Context
 
 // Join two URL paths.
 func pathJoin(a, b string) string {
@@ -65,17 +67,17 @@ func copyRequest(r *http.Request) (*http.Request, error) {
 }
 
 func handler(w http.ResponseWriter, r *http.Request) {
-	context = appengine.NewContext(r)
+	context_ = appengine.NewContext(r)
 	fr, err := copyRequest(r)
 	if err != nil {
-		context.Errorf("copyRequest: %s", err)
+		log.Errorf(context_, "copyRequest: %s", err)
 		http.Error(w, err.Error(), http.StatusInternalServerError)
 		return
 	}
 	// Use urlfetch.Transport directly instead of urlfetch.Client because we
 	// want only a single HTTP transaction, not following redirects.
 	transport := urlfetch.Transport{
-		Context: context,
+		Context: context_,
 		// Despite the name, Transport.Deadline is really a timeout and
 		// not an absolute deadline as used in the net package. In
 		// other words it is a time.Duration, not a time.Time.
@@ -83,7 +85,7 @@ func handler(w http.ResponseWriter, r *http.Request) {
 	}
 	resp, err := transport.RoundTrip(fr)
 	if err != nil {
-		context.Errorf("RoundTrip: %s", err)
+		log.Errorf(context_, "RoundTrip: %s", err)
 		http.Error(w, err.Error(), http.StatusInternalServerError)
 		return
 	}
@@ -99,7 +101,7 @@ func handler(w http.ResponseWriter, r *http.Request) {
 	w.WriteHeader(resp.StatusCode)
 	n, err := io.Copy(w, resp.Body)
 	if err != nil {
-		context.Errorf("io.Copy after %d bytes: %s", n, err)
+		log.Errorf(context_, "io.Copy after %d bytes: %s", n, err)
 	}
 }
 



More information about the tor-commits mailing list