Skip to content

Commit 1eb7127

Browse files
authored
Merge pull request #1573 from jluebbe/fix-version-message
remote/exporter: fix info message for version
2 parents fff35ee + 7b4736f commit 1eb7127

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

labgrid/remote/exporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ async def message_pump(self):
871871
logging.debug("received message %s", out_message)
872872
kind = out_message.WhichOneof("kind")
873873
if kind == "hello":
874-
logging.info("connected to exporter version %s", out_message.hello.version)
874+
logging.info("connected to coordinator version %s", out_message.hello.version)
875875
elif kind == "set_acquired_request":
876876
logging.debug("acquire request")
877877
success = False

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def start(self):
134134
cwd=self.cwd)
135135
try:
136136
self.spawn.expect('exporter name: testhost')
137-
self.spawn.expect('connected to exporter')
137+
self.spawn.expect('connected to coordinator')
138138
except Exception as e:
139139
raise Exception(f"exporter startup failed with {self.spawn.before}") from e
140140

0 commit comments

Comments
 (0)