summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/gopkg.in/throttled/throttled.v1')
-rw-r--r--Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/custom/main.go2
-rw-r--r--Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-many/main.go2
-rw-r--r--Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-vary/main.go2
-rw-r--r--Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval/main.go2
-rw-r--r--Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/memstats/main.go2
-rw-r--r--Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/rate-limit/main.go6
-rw-r--r--Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/interval.go2
-rw-r--r--Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/mem.go4
-rw-r--r--Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/redis.go4
-rw-r--r--Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/redis_test.go2
10 files changed, 14 insertions, 14 deletions
diff --git a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/custom/main.go b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/custom/main.go
index 128e08b81..b3fe993e8 100644
--- a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/custom/main.go
+++ b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/custom/main.go
@@ -9,7 +9,7 @@ import (
"sync"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
+ "gopkg.in/throttled/throttled.v1"
)
var (
diff --git a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-many/main.go b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-many/main.go
index 03fcfce80..51a4ca023 100644
--- a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-many/main.go
+++ b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-many/main.go
@@ -9,7 +9,7 @@ import (
"sync"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
+ "gopkg.in/throttled/throttled.v1"
)
var (
diff --git a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-vary/main.go b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-vary/main.go
index f84e1e41f..f43cdc122 100644
--- a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-vary/main.go
+++ b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval-vary/main.go
@@ -9,7 +9,7 @@ import (
"sync"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
+ "gopkg.in/throttled/throttled.v1"
)
var (
diff --git a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval/main.go b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval/main.go
index f89067816..ef8ee2cb8 100644
--- a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval/main.go
+++ b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/interval/main.go
@@ -9,7 +9,7 @@ import (
"sync"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
+ "gopkg.in/throttled/throttled.v1"
)
var (
diff --git a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/memstats/main.go b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/memstats/main.go
index 823de9b25..50d4cc69b 100644
--- a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/memstats/main.go
+++ b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/memstats/main.go
@@ -11,7 +11,7 @@ import (
"sync"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
+ "gopkg.in/throttled/throttled.v1"
)
var (
diff --git a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/rate-limit/main.go b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/rate-limit/main.go
index 1e4c1cb8f..b00119f63 100644
--- a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/rate-limit/main.go
+++ b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/examples/rate-limit/main.go
@@ -9,9 +9,9 @@ import (
"sync"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
- "github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
- "github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store"
+ "github.com/garyburd/redigo/redis"
+ "gopkg.in/throttled/throttled.v1"
+ "gopkg.in/throttled/throttled.v1/store"
)
var (
diff --git a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/interval.go b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/interval.go
index ab4d45251..628a5593e 100644
--- a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/interval.go
+++ b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/interval.go
@@ -5,7 +5,7 @@ import (
"sync"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/groupcache/lru"
+ "github.com/golang/groupcache/lru"
)
// Static check to ensure that the interval limiters implement the Limiter interface.
diff --git a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/mem.go b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/mem.go
index 74d48a73e..22d200e8d 100644
--- a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/mem.go
+++ b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/mem.go
@@ -4,8 +4,8 @@ import (
"sync"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/groupcache/lru"
- "github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
+ "github.com/golang/groupcache/lru"
+ "gopkg.in/throttled/throttled.v1"
)
// memStore implements an in-memory Store.
diff --git a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/redis.go b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/redis.go
index 44ef43122..b089f9f4e 100644
--- a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/redis.go
+++ b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/redis.go
@@ -3,8 +3,8 @@ package store
import (
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
- "github.com/mattermost/platform/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1"
+ "github.com/garyburd/redigo/redis"
+ "gopkg.in/throttled/throttled.v1"
)
// redisStore implements a Redis-based store.
diff --git a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/redis_test.go b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/redis_test.go
index d7d1d1743..a282d6d25 100644
--- a/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/redis_test.go
+++ b/Godeps/_workspace/src/gopkg.in/throttled/throttled.v1/store/redis_test.go
@@ -4,7 +4,7 @@ import (
"testing"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/garyburd/redigo/redis"
+ "github.com/garyburd/redigo/redis"
)
func getPool() *redis.Pool {