Skip to content

Commit

Permalink
fix: Default proxy-ip to None
Browse files Browse the repository at this point in the history
Otherwise, this gets set to "None" (str)
  • Loading branch information
adityahase authored Nov 13, 2024
1 parent 71dce15 commit 4ff4b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def ping_server(password: str):
@click.option("--name", required=True)
@click.option("--user", default="frappe")
@click.option("--workers", required=True, type=int)
@click.option("--proxy-ip", required=False, type=str)
@click.option("--proxy-ip", required=False, type=str, default=None)
@click.option("--sentry-dsn", required=False, type=str)
def config(name, user, workers, proxy_ip=None, sentry_dsn=None):
config = {
Expand Down

0 comments on commit 4ff4b8f

Please sign in to comment.