Skip to content

Commit 42fb22f

Browse files
committed
Remove (now invalid) default URL for dispatch API
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent c4a0f60 commit 42fb22f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/frequenz/client/dispatch/__main__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
from .recurrence import EndCriteria, Frequency, RecurrenceRule, Weekday
3030
from .types import Dispatch, DispatchEvent
3131

32-
DEFAULT_DISPATCH_API_URL = "grpc://dispatch.url.goes.here.example.com"
33-
3432

3533
def format_datetime(dt: datetime | None) -> str:
3634
"""Format datetime object to a readable string, or return 'N/A' if None."""
@@ -165,11 +163,9 @@ def format_line(key: str, value: str, color: str = "cyan") -> str:
165163
@click.group(invoke_without_command=True)
166164
@click.option(
167165
"--url",
168-
default=DEFAULT_DISPATCH_API_URL,
169166
help="Dispatch API Url",
170167
envvar="DISPATCH_API_URL",
171168
show_envvar=True,
172-
show_default=True,
173169
)
174170
@click.option(
175171
"--key",

0 commit comments

Comments
 (0)