Skip to content

Commit

Permalink
resource/remote: use correct env variable for gRPC
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Luebbe <[email protected]>
  • Loading branch information
jluebbe committed Jun 21, 2024
1 parent c2692f8 commit d28220c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labgrid/resource/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def on_resource_added(self, resource):
# be the same).
if not self.session:
self.env = remote_place.target.env
self.url = os.environ.get("LG_CROSSBAR", "127.0.0.1:20408")
self.url = os.environ.get("LG_COORDINATOR", "127.0.0.1:20408")
if self.env:
config = self.env.config
self.url = config.get_option('crossbar_url', self.url)
Expand Down

0 comments on commit d28220c

Please sign in to comment.