Skip to content

Commit fccffc9

Browse files
committed
Updates robot hostnames to use .local
Changes the hardcoded hostnames for the robots to use the '.local' domain. This likely improves DNS resolution or network discovery in a local network environment.
1 parent 340007f commit fccffc9

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/services/RobotService.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class RobotService {
6868

6969
if (!hasNerell) {
7070
new Robot({
71-
host : 'nerell:8080',
71+
host : 'nerell.local:8080',
7272
name : 'Nerell',
7373
simulateur: false,
7474
}).save();
@@ -98,7 +98,7 @@ export class RobotService {
9898
}*/
9999
if (!hasPamiTriangle) {
100100
new Robot({
101-
host : 'pami-triangle:8082',
101+
host : 'pami-triangl.local:8082',
102102
name : 'Pami △',
103103
dirName : 'pami-triangle',
104104
simulateur: false,
@@ -116,7 +116,7 @@ export class RobotService {
116116
}
117117
if (!hasPamiCarre) {
118118
new Robot({
119-
host : 'pami-carre:8083',
119+
host : 'pami-carre.local:8083',
120120
name : 'Pami ▢',
121121
dirName : 'pami-carre',
122122
simulateur: false,
@@ -134,7 +134,7 @@ export class RobotService {
134134
}
135135
if (!hasPamiRond) {
136136
new Robot({
137-
host : 'pami-rond:8084',
137+
host : 'pami-rond.local:8084',
138138
name : 'Pami ○',
139139
dirName : 'pami-rond',
140140
simulateur: false,
@@ -152,7 +152,7 @@ export class RobotService {
152152
}
153153
if (!hasPamiStar) {
154154
new Robot({
155-
host : 'pami-star:8085',
155+
host : 'pami-star.local:8085',
156156
name : 'Pami ★',
157157
dirName : 'pami-star',
158158
simulateur: false,

0 commit comments

Comments
 (0)