diff --git a/api/runner/metrics.go b/api/runner/metrics.go index 2ddceb3b6..60cc0aadc 100644 --- a/api/runner/metrics.go +++ b/api/runner/metrics.go @@ -4,7 +4,7 @@ import ( "time" "github.com/Sirupsen/logrus" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" "golang.org/x/net/context" ) diff --git a/api/runner/runner.go b/api/runner/runner.go index bfe26fccf..321d17129 100644 --- a/api/runner/runner.go +++ b/api/runner/runner.go @@ -15,12 +15,12 @@ import ( "golang.org/x/net/context" "github.com/Sirupsen/logrus" - "github.com/iron-io/titan/common" - "github.com/iron-io/titan/runner/agent" - "github.com/iron-io/titan/runner/drivers" - driverscommon "github.com/iron-io/titan/runner/drivers" - "github.com/iron-io/titan/runner/drivers/docker" - "github.com/iron-io/titan/runner/drivers/mock" + "github.com/iron-io/worker/common" + "github.com/iron-io/worker/runner/agent" + "github.com/iron-io/worker/runner/drivers" + driverscommon "github.com/iron-io/worker/runner/drivers" + "github.com/iron-io/worker/runner/drivers/docker" + "github.com/iron-io/worker/runner/drivers/mock" ) type Config struct { diff --git a/api/runner/task.go b/api/runner/task.go index a62187fc8..a9a28b7ee 100644 --- a/api/runner/task.go +++ b/api/runner/task.go @@ -6,8 +6,8 @@ import ( "golang.org/x/net/context" dockercli "github.com/fsouza/go-dockerclient" - "github.com/iron-io/titan/runner/drivers" - "github.com/iron-io/titan/runner/tasker" + "github.com/iron-io/worker/runner/drivers" + "github.com/iron-io/worker/runner/tasker" ) type containerTask struct { diff --git a/api/server/apps_create.go b/api/server/apps_create.go index 3577b0b8e..f40c46717 100644 --- a/api/server/apps_create.go +++ b/api/server/apps_create.go @@ -7,7 +7,7 @@ import ( "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) func handleAppCreate(c *gin.Context) { diff --git a/api/server/apps_delete.go b/api/server/apps_delete.go index 0fdacdca6..8afa8b8c3 100644 --- a/api/server/apps_delete.go +++ b/api/server/apps_delete.go @@ -7,7 +7,7 @@ import ( "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) func handleAppDelete(c *gin.Context) { diff --git a/api/server/apps_get.go b/api/server/apps_get.go index f4cc59c89..a81aae445 100644 --- a/api/server/apps_get.go +++ b/api/server/apps_get.go @@ -7,7 +7,7 @@ import ( "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) func handleAppGet(c *gin.Context) { diff --git a/api/server/apps_list.go b/api/server/apps_list.go index acce3cb10..862186b3a 100644 --- a/api/server/apps_list.go +++ b/api/server/apps_list.go @@ -7,7 +7,7 @@ import ( "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) func handleAppList(c *gin.Context) { diff --git a/api/server/apps_update.go b/api/server/apps_update.go index a805ab2d2..879221b64 100644 --- a/api/server/apps_update.go +++ b/api/server/apps_update.go @@ -7,7 +7,7 @@ import ( "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) func handleAppUpdate(c *gin.Context) { diff --git a/api/server/helpers.go b/api/server/helpers.go index 863f4748b..d1054f8c6 100644 --- a/api/server/helpers.go +++ b/api/server/helpers.go @@ -13,7 +13,7 @@ import ( "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" "github.com/iron-io/functions/api/runner" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) type appResponse struct { diff --git a/api/server/routes_create.go b/api/server/routes_create.go index eab0f8e31..1fbe36c78 100644 --- a/api/server/routes_create.go +++ b/api/server/routes_create.go @@ -8,7 +8,7 @@ import ( "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" "github.com/iron-io/functions/api/runner" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) func handleRouteCreate(c *gin.Context) { diff --git a/api/server/routes_delete.go b/api/server/routes_delete.go index 5a1a55968..b5909c356 100644 --- a/api/server/routes_delete.go +++ b/api/server/routes_delete.go @@ -7,7 +7,7 @@ import ( "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) func handleRouteDelete(c *gin.Context) { diff --git a/api/server/routes_get.go b/api/server/routes_get.go index 83255a246..61aa2a789 100644 --- a/api/server/routes_get.go +++ b/api/server/routes_get.go @@ -8,7 +8,7 @@ import ( "github.com/Sirupsen/logrus" "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) func handleRouteGet(c *gin.Context) { diff --git a/api/server/routes_list.go b/api/server/routes_list.go index c5aa4d128..33c2fe159 100644 --- a/api/server/routes_list.go +++ b/api/server/routes_list.go @@ -8,7 +8,7 @@ import ( "github.com/Sirupsen/logrus" "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) func handleRouteList(c *gin.Context) { diff --git a/api/server/routes_update.go b/api/server/routes_update.go index cd61c2dcd..33d326fa0 100644 --- a/api/server/routes_update.go +++ b/api/server/routes_update.go @@ -7,7 +7,7 @@ import ( "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) func handleRouteUpdate(c *gin.Context) { diff --git a/api/server/runner.go b/api/server/runner.go index 7a120dd17..4afa3c1c4 100644 --- a/api/server/runner.go +++ b/api/server/runner.go @@ -16,7 +16,7 @@ import ( "github.com/gin-gonic/gin" "github.com/iron-io/functions/api/models" "github.com/iron-io/functions/api/runner" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" "github.com/satori/go.uuid" ) diff --git a/api/server/server.go b/api/server/server.go index 3360be61b..4d84d84f7 100644 --- a/api/server/server.go +++ b/api/server/server.go @@ -10,7 +10,7 @@ import ( "github.com/iron-io/functions/api/ifaces" "github.com/iron-io/functions/api/models" "github.com/iron-io/functions/api/runner" - titancommon "github.com/iron-io/titan/common" + titancommon "github.com/iron-io/worker/common" ) // Would be nice to not have this is a global, but hard to pass things around to the diff --git a/glide.lock b/glide.lock index ab6e8e3f4..43150c8a1 100644 --- a/glide.lock +++ b/glide.lock @@ -102,7 +102,7 @@ imports: version: ddbd05bac47f55e533a7ed124211ef7e076b0bf3 subpackages: - registry -- name: github.com/iron-io/titan +- name: github.com/iron-io/worker version: 3bb6aacb244a24e38bba755cc863533810117a5c repo: git@github.com:iron-io/worker.git vcs: git diff --git a/glide.yaml b/glide.yaml index cfa53498f..9f83580c9 100644 --- a/glide.yaml +++ b/glide.yaml @@ -6,7 +6,7 @@ import: - package: github.com/go-openapi/errors - package: github.com/go-openapi/strfmt - package: github.com/go-openapi/validate -- package: github.com/iron-io/titan +- package: github.com/iron-io/worker repo: git@github.com:iron-io/worker.git vcs: git version: master