Skip to content

Commit

Permalink
Merge pull request #19 from leoparente/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
richbibby authored Sep 21, 2024
2 parents 582e399 + 4c89186 commit 9772360
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion diode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export DIODE_API_KEY=<generated when configuring your Diode plugin>
All scripts have an optional flags:

```
--target TARGET the target address of the Diode server (default: grpc://localhost:8081)
--target TARGET the target address of the Diode server (default: grpc://localhost:8080/diode)
--apply apply the changes (default: False)
```

Expand Down
2 changes: 1 addition & 1 deletion diode/examples/cisco_ios/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def main():
parser.add_argument(
"--target",
type=str,
default="grpc://localhost:8081",
default="grpc://localhost:8080/diode",
help="the target address of the Diode server",
)
parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion diode/examples/containerlab/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def main():
parser.add_argument(
"--target",
type=str,
default="grpc://localhost:8081",
default="grpc://localhost:8080/diode",
help="the target address of the Diode server",
)
parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion diode/examples/csv/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def main():
parser.add_argument(
"--target",
type=str,
default="grpc://localhost:8081",
default="grpc://localhost:8080/diode",
help="the target address of the Diode server",
)
parser.add_argument(
Expand Down

0 comments on commit 9772360

Please sign in to comment.