Skip to content

Commit 03f862b

Browse files
authored
Fix address for skill and solution services (#64)
Signed-off-by: Yadunund <[email protected]>
1 parent 8da5bcb commit 03f862b

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

flowstate_ros_bridge/flowstate_ros_bridge_default_config.pbtxt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
[type.googleapis.com/intrinsic.FlowstateRosBridgeConfig] {
55
workcell_id: ""
66
executive_service_address: "executive.app-intrinsic-app-chart.svc.cluster.local:8080"
7-
skill_registry_address: "frontend.app-intrinsic-base.svc.cluster.local:8082"
8-
solution_service_address: "skill-registry.app-intrinsic-app-chart.svc.cluster.local:8080"
7+
skill_registry_address: "skill-registry.app-intrinsic-app-chart.svc.cluster.local:8080"
8+
solution_service_address: "frontend.app-intrinsic-base.svc.cluster.local:8082"
99
world_service_address: "world.app-intrinsic-base.svc.cluster.local:8080"
1010
geometry_service_address: "geomservice.app-intrinsic-base.svc.cluster.local:8080"
1111
flowstate_zenoh_router_address: "tcp/zenoh-router.app-intrinsic-base:7447"

flowstate_ros_bridge/src/flowstate_ros_bridge.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,16 @@ FlowstateROSBridge::FlowstateROSBridge(const rclcpp::NodeOptions& options)
5656
service_tunnel.empty()
5757
? "executive.app-intrinsic-app-chart.svc.cluster.local:8080"
5858
: service_tunnel);
59-
6059
this->declare_parameter(
6160
kSkillAddressParamName,
6261
service_tunnel.empty()
63-
? "frontend.app-intrinsic-base.svc.cluster.local:8082"
62+
? "skill-registry.app-intrinsic-app-chart.svc.cluster.local:8080"
6463
: service_tunnel);
6564

6665
this->declare_parameter(
6766
kSolutionAddressParamName,
6867
service_tunnel.empty()
69-
? "skill-registry.app-intrinsic-app-chart.svc.cluster.local:8080"
68+
? "frontend.app-intrinsic-base.svc.cluster.local:8082"
7069
: service_tunnel);
7170

7271
this->declare_parameter(

0 commit comments

Comments
 (0)