-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make fallback domain configurable #39
make fallback domain configurable #39
Conversation
unifi_respondd/config.py
Outdated
@@ -73,6 +73,7 @@ def from_dict(cls, cfg: Dict[str, str]) -> "Config": | |||
unicast_port=cfg["unicast_port"], | |||
interface=cfg["interface"], | |||
verbose=cfg["verbose"], | |||
fallback_domain=cfg.get("fallback_domain", None), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe change None
to unifi_respondd_fallback
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needs to be added also somewhere here:
https://github.com/grische/unifi_respondd/blob/feature/fallback-domain-configurable/unifi_respondd/config.py#L31-L45
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@T0biii updated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure about unifi_respondd_fallback
? Currently, it's ffmuc_unifi_respondd_fallback
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as omada and the uisp_respondd uses also only x_respondd_fallback i think it would be the best
anyone can ajust it as they want :)
69748ea
to
757e4a2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.