Skip to content

Commit 9772360

Browse files
authored
Merge pull request #19 from leoparente/develop
2 parents 582e399 + 4c89186 commit 9772360

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

diode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export DIODE_API_KEY=<generated when configuring your Diode plugin>
4444
All scripts have an optional flags:
4545

4646
```
47-
--target TARGET the target address of the Diode server (default: grpc://localhost:8081)
47+
--target TARGET the target address of the Diode server (default: grpc://localhost:8080/diode)
4848
--apply apply the changes (default: False)
4949
```
5050

diode/examples/cisco_ios/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def main():
117117
parser.add_argument(
118118
"--target",
119119
type=str,
120-
default="grpc://localhost:8081",
120+
default="grpc://localhost:8080/diode",
121121
help="the target address of the Diode server",
122122
)
123123
parser.add_argument(

diode/examples/containerlab/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def main():
7474
parser.add_argument(
7575
"--target",
7676
type=str,
77-
default="grpc://localhost:8081",
77+
default="grpc://localhost:8080/diode",
7878
help="the target address of the Diode server",
7979
)
8080
parser.add_argument(

diode/examples/csv/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def main():
1212
parser.add_argument(
1313
"--target",
1414
type=str,
15-
default="grpc://localhost:8081",
15+
default="grpc://localhost:8080/diode",
1616
help="the target address of the Diode server",
1717
)
1818
parser.add_argument(

0 commit comments

Comments
 (0)