rx_zmqip has been removed. Remove it also for pyctbgui (#979)

This commit is contained in:
maliakal_d 2024-09-26 10:43:16 +02:00 committed by GitHub
parent 33b8e0817e
commit 492b4815a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -7,8 +7,8 @@ import matplotlib.pyplot as plt
det = Detector()
zmqIp = det.rx_zmqip
zmqport = det.rx_zmqport
zmqIp = det.zmqip
zmqport = det.zmqport
zmq_stream = det.rx_zmqstream

View File

@ -687,8 +687,8 @@ class AcquisitionTab(QtWidgets.QWidget):
def setup_zmq(self):
self.det.rx_zmqstream = 1
self.zmqIp = self.det.rx_zmqip
self.zmqport = self.det.rx_zmqport
self.zmqIp = self.det.zmqip
self.zmqport = self.det.zmqport
self.zmq_stream = self.det.rx_zmqstream
self.context = zmq.Context()