From de18172952cd3f22294e7eaefcd89f844c055794 Mon Sep 17 00:00:00 2001 From: Justin Li Date: Tue, 28 Apr 2015 20:32:19 -0400 Subject: [PATCH] Update graceful import path --- Godeps/Godeps.json | 2 +- .../src/github.com/{stretchr => tylerb}/graceful/.gitignore | 0 .../src/github.com/{stretchr => tylerb}/graceful/LICENSE | 0 .../src/github.com/{stretchr => tylerb}/graceful/README.md | 0 .../src/github.com/{stretchr => tylerb}/graceful/graceful.go | 0 .../github.com/{stretchr => tylerb}/graceful/graceful_test.go | 0 .../src/github.com/{stretchr => tylerb}/graceful/tests/main.go | 0 http/http.go | 2 +- 8 files changed, 2 insertions(+), 2 deletions(-) rename Godeps/_workspace/src/github.com/{stretchr => tylerb}/graceful/.gitignore (100%) rename Godeps/_workspace/src/github.com/{stretchr => tylerb}/graceful/LICENSE (100%) rename Godeps/_workspace/src/github.com/{stretchr => tylerb}/graceful/README.md (100%) rename Godeps/_workspace/src/github.com/{stretchr => tylerb}/graceful/graceful.go (100%) rename Godeps/_workspace/src/github.com/{stretchr => tylerb}/graceful/graceful_test.go (100%) rename Godeps/_workspace/src/github.com/{stretchr => tylerb}/graceful/tests/main.go (100%) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index c781eb4..15011eb 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -27,7 +27,7 @@ "Rev": "86044f1c998d49053e13293029414ddb63f3a422" }, { - "ImportPath": "github.com/stretchr/graceful", + "ImportPath": "github.com/tylerb/graceful", "Comment": "v1-7-g0c01122", "Rev": "0c011221e91b35f488b8818b00ca279929e9ed7d" }, diff --git a/Godeps/_workspace/src/github.com/stretchr/graceful/.gitignore b/Godeps/_workspace/src/github.com/tylerb/graceful/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/graceful/.gitignore rename to Godeps/_workspace/src/github.com/tylerb/graceful/.gitignore diff --git a/Godeps/_workspace/src/github.com/stretchr/graceful/LICENSE b/Godeps/_workspace/src/github.com/tylerb/graceful/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/graceful/LICENSE rename to Godeps/_workspace/src/github.com/tylerb/graceful/LICENSE diff --git a/Godeps/_workspace/src/github.com/stretchr/graceful/README.md b/Godeps/_workspace/src/github.com/tylerb/graceful/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/graceful/README.md rename to Godeps/_workspace/src/github.com/tylerb/graceful/README.md diff --git a/Godeps/_workspace/src/github.com/stretchr/graceful/graceful.go b/Godeps/_workspace/src/github.com/tylerb/graceful/graceful.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/graceful/graceful.go rename to Godeps/_workspace/src/github.com/tylerb/graceful/graceful.go diff --git a/Godeps/_workspace/src/github.com/stretchr/graceful/graceful_test.go b/Godeps/_workspace/src/github.com/tylerb/graceful/graceful_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/graceful/graceful_test.go rename to Godeps/_workspace/src/github.com/tylerb/graceful/graceful_test.go diff --git a/Godeps/_workspace/src/github.com/stretchr/graceful/tests/main.go b/Godeps/_workspace/src/github.com/tylerb/graceful/tests/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/graceful/tests/main.go rename to Godeps/_workspace/src/github.com/tylerb/graceful/tests/main.go diff --git a/http/http.go b/http/http.go index ba8f748..6164d5a 100644 --- a/http/http.go +++ b/http/http.go @@ -12,7 +12,7 @@ import ( "github.com/golang/glog" "github.com/julienschmidt/httprouter" - "github.com/stretchr/graceful" + "github.com/tylerb/graceful" "github.com/chihaya/chihaya/config" "github.com/chihaya/chihaya/stats"