Skip to content

Commit

Permalink
remote/coordinator: fix exporter name when sending all resources
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Luebbe <[email protected]>
  • Loading branch information
jluebbe committed Jun 12, 2024
1 parent 8450666 commit 4577113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labgrid/remote/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def subscribe_resources(self):
resource: ResourceImport
out_msg = labgrid_coordinator_pb2.ClientOutMessage()
out_msg.update.resource.CopyFrom(resource.as_pb2())
out_msg.update.resource.path.exporter_name = self.name
out_msg.update.resource.path.exporter_name = exporter.name
out_msg.update.resource.path.group_name = groupname
out_msg.update.resource.path.resource_name = resourcename
self.queue.put_nowait(out_msg)
Expand Down

0 comments on commit 4577113

Please sign in to comment.