updated worker repository ref

This commit is contained in:
Henrique Chehad
2016-09-19 20:41:35 -03:00
parent a280644ba3
commit 06294b4b77
18 changed files with 24 additions and 24 deletions

View File

@@ -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"
)

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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 {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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"
)

View File

@@ -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