Files
fn-serverless/glide.yaml
C Cirello df3d5b48ce Fix race condition during initialization (#163)
Currently, async workers are started before HTTP interface is available
to get their requests. It fixes by ensuring that async workers are
started after HTTP interface is up.

Essentially we are getting rid of an error message during bootstrap:

        ERRO[0000] Could not fetch task error=Get http://127.0.0.1:8080/tasks: dial tcp 127.0.0.1:8080: getsockopt: connection refused
2016-10-13 22:56:34 +02:00

42 lines
1.0 KiB
YAML

package: github.com/iron-io/functions
import:
- package: github.com/Sirupsen/logrus
- package: github.com/boltdb/bolt
- package: github.com/dgrijalva/jwt-go
- package: github.com/garyburd/redigo
subpackages:
- redis
- package: github.com/gin-gonic/gin
- package: github.com/go-openapi/errors
- package: github.com/go-openapi/strfmt
- package: github.com/go-openapi/swag
- package: github.com/go-openapi/validate
- package: github.com/google/btree
- package: github.com/iron-io/runner
repo: https://github.com/iron-io/runner.git
vcs: git
subpackages:
- common
- drivers
- drivers/docker
- drivers/mock
- package: github.com/lib/pq
- package: github.com/satori/go.uuid
version: v1.1.0
- package: github.com/spf13/viper
- package: golang.org/x/crypto
subpackages:
- bcrypt
- package: golang.org/x/net
subpackages:
- context
- package: gopkg.in/mgo.v2
subpackages:
- bson
- package: github.com/cactus/go-statsd-client
version: ^3.1.0
subpackages:
- statsd
- package: cirello.io/supervisor
version: v0.5.0