120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
(if ping-res
(if runremote
(begin
(debug:print-info 2 *default-log-port* "connected to " (client:get-url runremote))
runremote)
(client:setup-http areapath runremote remaining-tries: (- remaining-tries 1)))
(begin ;; login failed but have a server record, clean out the record and try again
(debug:print-info 0 *default-log-port* "client:setup, login unsuccessful, will attempt to start server ... start-res=" start-res ", server-dat=" server-dat) ;; had runid. Fixes part of Randy;s ticket 1405717332
(http-transport:close-connections runremote)
(thread-sleep! 1)
(client:setup-http areapath runremote remaining-tries: (- remaining-tries 1))
)))
(begin ;; no server registered
;; (server:kind-run areapath)
(server:start-and-wait areapath)
|
|
|
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
(if ping-res
(if runremote
(begin
(debug:print-info 2 *default-log-port* "connected to " (client:get-url runremote))
runremote)
(client:setup-http areapath runremote remaining-tries: (- remaining-tries 1)))
(begin ;; login failed but have a server record, clean out the record and try again
(debug:print-info 0 *default-log-port* "client:setup, login unsuccessful, will attempt to start server ... ping-res=" ping-res ", server-dat=" server-dat) ;; had runid. Fixes part of Randy;s ticket 1405717332
(http-transport:close-connections runremote)
(thread-sleep! 1)
(client:setup-http areapath runremote remaining-tries: (- remaining-tries 1))
)))
(begin ;; no server registered
;; (server:kind-run areapath)
(server:start-and-wait areapath)
|