We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db32634 commit d9fed03Copy full SHA for d9fed03
internal/agent/f5/bigip/bigip.go
@@ -211,7 +211,7 @@ func (b *BigIP) EnsureRouteDomain(segmentId int, _ *int) error {
211
// TODO: remove code after all strict's disabled
212
for _, rd := range routeDomains.RouteDomains {
213
if rd.Strict == "enabled" && rd.Parent != "" {
214
- log.WithField("route domain", rd.Name).Warning("Found route domain with strict enabled, updating to disabled")
+ log.WithField("route domain", rd.Name).Warning("Found a child route domain with strict enabled, updating to disabled")
215
rd.Strict = "disabled"
216
if err = rd.Update(b); err != nil {
217
log.WithField("route domain", rd.Name).Errorf("failed to disable strict on route domain: %v", err)
0 commit comments