functions: 0.0.25 release

This commit is contained in:
Travis Reeder
2016-07-15 16:14:14 -07:00
parent 403befabce
commit 4f5c307300
2 changed files with 2 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ set -ex
user="iron"
service="functions"
version_file="router.go"
version_file="version.go"
tag="latest"
./build.sh

View File

@@ -44,8 +44,6 @@ var config struct {
}
}
const Version = "0.0.24"
//var routingTable = map[string]*Route{}
var icache = cache.New("routing-table")
@@ -113,7 +111,7 @@ func main() {
http.Handle("/", r)
port := 8080
log.Infoln("Router started, listening and serving on port", port)
log.Fatal(http.ListenAndServe(fmt.Sprintf("0.0.1.0:%v", port), nil))
log.Fatal(http.ListenAndServe(fmt.Sprintf("0.0.0.0:%v", port), nil))
}
type NewApp struct{}