Merge pull request #49 from resin-io/github-34

Do not report the tun addresses to API
This commit is contained in:
Praneeth 2015-12-10 22:38:24 +05:30
commit a8aa3ebd4f
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
* Do not report the tun addresses to API [Praneeth]
# v1.3.1 # v1.3.1
* Only save the app if starting the container was successful [Pablo] * Only save the app if starting the container was successful [Pablo]

View File

@ -16,7 +16,7 @@ import (
// Compile the expression once, usually at init time. // Compile the expression once, usually at init time.
// Use raw strings to avoid having to quote the backslashes. // Use raw strings to avoid having to quote the backslashes.
var dockerMatch = regexp.MustCompile(`(docker[0-9]+)|(rce[0-9]+)`) var dockerMatch = regexp.MustCompile(`(docker[0-9]+)|(rce[0-9]+)|(tun[0-9]+)`)
// APIResponse The api response sent from go supervisor // APIResponse The api response sent from go supervisor
type APIResponse struct { type APIResponse struct {