Adding safelist to travis.yml and correcting a typo

This commit is contained in:
smruthi2187
2018-02-08 14:03:27 -08:00
parent 7752abaf05
commit 841c7ef845
6 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -2,6 +2,10 @@ sudo: required
dist: trusty
branches:
only:
- master
language: go
go:
@@ -15,10 +19,6 @@ cache:
services:
- docker
#branches:
# only:
# - master
before_install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
+1 -1
View File
@@ -36,7 +36,7 @@ func Start(port int) {
signal.Notify(c, syscall.SIGTERM)
go func() {
<-c
log.Println("Recived SIGTERM : Dumping stack trace")
log.Println("Received SIGTERM : Dumping stack trace")
dumpStackTrace()
os.Exit(1)
}()
+1 -1
View File
@@ -31,7 +31,7 @@ func main() {
signal.Notify(c, syscall.SIGTERM)
go func() {
<-c
log.Println("Recived SIGTERM : Dumping stack trace")
log.Println("Received SIGTERM : Dumping stack trace")
dumpStackTrace()
os.Exit(1)
}()
+1 -1
View File
@@ -197,7 +197,7 @@ func StartExecutor(fissionNamespace string, functionNamespace string, port int)
signal.Notify(c, syscall.SIGTERM)
go func() {
<-c
log.Println("Recived SIGTERM : Dumping stack trace")
log.Println("Received SIGTERM : Dumping stack trace")
dumpStackTrace()
os.Exit(1)
}()
+1 -1
View File
@@ -84,7 +84,7 @@ func Start(port int, executorUrl string) {
signal.Notify(c, syscall.SIGTERM)
go func() {
<-c
log.Println("Recived SIGTERM : Dumping stack trace")
log.Println("Received SIGTERM : Dumping stack trace")
dumpStackTrace()
os.Exit(1)
}()
+1 -1
View File
@@ -184,7 +184,7 @@ func RunStorageService(storageType StorageType, storagePath string, containerNam
signal.Notify(c, syscall.SIGTERM)
go func() {
<-c
log.Println("Recived SIGTERM : Dumping stack trace")
log.Println("Received SIGTERM : Dumping stack trace")
dumpStackTrace()
os.Exit(1)
}()