Skip to content

Commit

Permalink
moved testing modules to iqo-modules
Browse files Browse the repository at this point in the history
  • Loading branch information
astropiuu committed Aug 19, 2024
1 parent 22fdf0c commit 64d4224
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 59 deletions.
1 change: 0 additions & 1 deletion src/qudi/core/servers.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ def run(self):
port=self.port,
protocol_config=self.protocol_config,
authenticator=authenticator,
listener_timeout=None
)
logger.info(
f'Starting RPyC server "{self.thread().objectName()}" on '
Expand Down
2 changes: 0 additions & 2 deletions src/qudi/core/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,14 +216,12 @@ def on_connect(self, conn):
pass
host, port = conn._config["endpoints"][1]
logger.info(f"Client connected to local module service from [{host}]:{port:d}")
print(f"Client connected to local module service from [{host}]:{port:d}")

def on_disconnect(self, conn):
"""code that runs when the connection is closing"""
self._notifier_callbacks.pop(conn, None)
host, port = conn._config["endpoints"][1]
logger.info(f"Client [{host}]:{port:d} disconnected from local module service")
print(f"Client [{host}]:{port:d} disconnected from local module service")

def notify_module_change(self):
logger.debug(
Expand Down
56 changes: 0 additions & 56 deletions tests/test_remote.py

This file was deleted.

0 comments on commit 64d4224

Please sign in to comment.