Skip to content

Commit

Permalink
Merge pull request #1573 from jluebbe/fix-version-message
Browse files Browse the repository at this point in the history
remote/exporter: fix info message for version
  • Loading branch information
jluebbe authored Jan 22, 2025
2 parents fff35ee + 7b4736f commit 1eb7127
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion labgrid/remote/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ async def message_pump(self):
logging.debug("received message %s", out_message)
kind = out_message.WhichOneof("kind")
if kind == "hello":
logging.info("connected to exporter version %s", out_message.hello.version)
logging.info("connected to coordinator version %s", out_message.hello.version)
elif kind == "set_acquired_request":
logging.debug("acquire request")
success = False
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def start(self):
cwd=self.cwd)
try:
self.spawn.expect('exporter name: testhost')
self.spawn.expect('connected to exporter')
self.spawn.expect('connected to coordinator')
except Exception as e:
raise Exception(f"exporter startup failed with {self.spawn.before}") from e

Expand Down

0 comments on commit 1eb7127

Please sign in to comment.