Browse Source

remove unused parameter

Agioi Theodoroi 5 years ago
parent
commit
37a55653e9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/main.go

+ 1 - 1
main/main.go

@@ -166,7 +166,7 @@ func main() {
 
 	{
 		osSignals := make(chan os.Signal, 1)
-		signal.Notify(osSignals, os.Interrupt, os.Kill, syscall.SIGTERM)
+		signal.Notify(osSignals, os.Interrupt, syscall.SIGTERM)
 		<-osSignals
 	}
 }