accidentally left empty debugging for loop in the code
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
de8bb0ed36
commit
2768e0f278
|
@ -1,11 +1,11 @@
|
|||
*.swp
|
||||
|
||||
# put build file info in here:
|
||||
# put build file info in here
|
||||
# this is a trick to save info about when
|
||||
# the binaries were built, how they were
|
||||
# built. what version was built, etc
|
||||
# TODO: find a better way (not via ldflags)
|
||||
resources/build
|
||||
go.mod
|
||||
go.sum
|
||||
*/go.mod
|
||||
*/go.sum
|
||||
|
||||
cloud-control-panel
|
||||
|
||||
|
|
|
@ -297,7 +297,7 @@ func parseConfig() {
|
|||
// my pid (cross platform) p, err := os.FindProcess(os.Getpid())
|
||||
// send signal (cross platform) return p.Signal(syscall.SIGTERM)
|
||||
|
||||
for {}
|
||||
// for {}
|
||||
// os.Exit(0)
|
||||
}
|
||||
|
||||
|
|
4
main.go
4
main.go
|
@ -124,8 +124,8 @@ func main() {
|
|||
|
||||
v185AAAA := lookupAAAA("v000185.testing.com.customers.wprod.wit.com")
|
||||
log.Println("v185AAA = ", v185AAAA)
|
||||
// go gorillaDial("ccp.wit.com:9000")
|
||||
go gorillaDial("stackapi-ccp.stackapi.customers.wit.com:9000")
|
||||
go gorillaDial("ccp.wit.com:9000")
|
||||
// go gorillaDial("stackapi-ccp.stackapi.customers.wit.com:9000")
|
||||
go gui.WatchGUI()
|
||||
|
||||
// use this to discover what the OS thinks it's hostname is
|
||||
|
|
Loading…
Reference in New Issue