-
Notifications
You must be signed in to change notification settings - Fork 40
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
fix bugs around property loading, naming, and temp graph replacement #821
Conversation
switch { | ||
case errors.Is(err, graph.ErrVertexNotFound): | ||
// do nothing | ||
break |
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.
break
? that'd break out of the for _, key := range topo
loop, is that what you intended?
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.
nope definitely didnt mean for that to be there, removing
@@ -4,11 +4,11 @@ resources: | |||
parent: eks_cluster/eks_cluster-0 | |||
|
|||
|
|||
load_balancer/rest-api-4-integ6897f0b9: | |||
load_balancer/rest-api-4-integbcc77100: |
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.
Is this non-deterministic?
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.
i dont think so, the ordering did change, which i assumed was from the way we load the graph, but i ran the same architecture 10 times and always saw the same result
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.
Just wondering if the UUIDs weren't deterministic, do we set the seed somewhere?
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.
dont think we do, we could probably look into that
@@ -4,11 +4,11 @@ resources: | |||
parent: eks_cluster/eks_cluster-0 | |||
|
|||
|
|||
load_balancer/rest-api-4-integ6897f0b9: | |||
load_balancer/rest-api-4-integbcc77100: |
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.
Just wondering if the UUIDs weren't deterministic, do we set the seed somewhere?
fix bugs around property loading, naming, and temp graph replacement
Standard checks