From bdbaa84989738a8db3d200d5758c48d7de24dd78 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Tue, 27 Mar 2018 07:18:26 -0400 Subject: [PATCH] lib/connections: Wrong context snuck in somehow --- lib/connections/limiter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connections/limiter.go b/lib/connections/limiter.go index 509294472..e14e25ae7 100644 --- a/lib/connections/limiter.go +++ b/lib/connections/limiter.go @@ -7,6 +7,7 @@ package connections import ( + "context" "fmt" "io" "sync/atomic" @@ -14,7 +15,6 @@ import ( "github.com/syncthing/syncthing/lib/config" "github.com/syncthing/syncthing/lib/protocol" "github.com/syncthing/syncthing/lib/sync" - "golang.org/x/net/context" "golang.org/x/time/rate" )