Skip to content
Snippets Groups Projects
Commit e22900d9 authored by Emanuele Laface's avatar Emanuele Laface
Browse files

Fix ts2 thread

parent 2ee4b054
No related branches found
No related tags found
No related merge requests found
Pipeline #29734 passed
......@@ -14,6 +14,7 @@ from threading import Thread, Event
from screens.pos import posScreen
from screens.interlocks import interlocksScreen
from screens.instruments import instrumentsScreen
from screens.ts2 import ts2Screen
PORT_NUMBER = 8080
ARCHIVER_SERVER = os.environ.get('ARCHIVER_SERVER', 'archiver-01.tn.esss.lu.se')
......@@ -205,6 +206,8 @@ try:
interlocksThread.start()
instrumentsThread = instrumentsScreen(stop_signal)
instrumentsThread.start()
ts2Thread = ts2Screen(stop_signal)
ts2Thread.start()
server = HTTPServer(('', PORT_NUMBER), myHandler)
print ('Started httpserver on port ' , PORT_NUMBER)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment