Skip to content
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

Work around missing interface breaking config diff #10

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

JohnGarbutt
Copy link
Member

... might be something bad with victoria?

... might be something bad with victoria?
@@ -44,7 +44,7 @@ def ip_mappings(context, hosts):
continue
result[host] = []
for network in networks:
interface = net_interface(context, host, network)
interface = net_interface(context, host, network) or ("missinginterface" + network)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
interface = net_interface(context, host, network) or ("missinginterface" + network)
interface = net_interface(context, host, network)
if not interface:
continue

Would also work, but maybe that is less debug-able.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants