Skip to content

Commit 9213c08

Browse files
authored
Merge pull request gilestrolab#4 from mark-grimes/removeCherryPy
Remove CherryPy
2 parents c229630 + 1a3eac9 commit 9213c08

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

node_src/scripts/server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def close(exit_status=0):
345345
device_scanner = DeviceScanner(LOCAL_IP, results_dir=RESULTS_DIR)
346346
#device_scanner = DeviceScanner( results_dir=RESULTS_DIR)
347347
device_scanner.start()
348-
run(app, host='0.0.0.0', port=PORT, debug=DEBUG, server='cherrypy')
348+
run(app, host='0.0.0.0', port=PORT, debug=DEBUG)
349349

350350
except KeyboardInterrupt:
351351
logging.info("Stopping server cleanly")

scripts/ethoscope_updater/update_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def close(exit_status=0):
242242

243243

244244
try:
245-
run(app, host='0.0.0.0', port=port, debug=debug, server='cherrypy')
245+
run(app, host='0.0.0.0', port=port, debug=debug)
246246

247247
except KeyboardInterrupt:
248248
logging.info("Stopping update server cleanly")

src/scripts/device_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def close(exit_status=0):
224224
control.start()
225225

226226
try:
227-
run(api, host='0.0.0.0', port=port, server='cherrypy',debug=option_dict["debug"])
227+
run(api, host='0.0.0.0', port=port, debug=option_dict["debug"])
228228
except Exception as e:
229229
logging.error(e)
230230
close(1)

0 commit comments

Comments
 (0)