You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the behavior of ipr.tc() popping the 'parent' key from kwarg and onto msg, this creates a situation where when fix_msg() in sched_cake.py runs, it overwrites the 'parent' key in msg with TC_H_ROOT's value, even if the parent had been properly set:
def fix_msg(msg, kwarg):
if 'parent' not in kwarg:
msg['parent'] = TC_H_ROOT
This prevents any cake qdisc from being applied as a child qdisc.
The text was updated successfully, but these errors were encountered:
Hello team,
Due to the behavior of ipr.tc() popping the 'parent' key from kwarg and onto msg, this creates a situation where when fix_msg() in sched_cake.py runs, it overwrites the 'parent' key in msg with TC_H_ROOT's value, even if the parent had been properly set:
def fix_msg(msg, kwarg):
if 'parent' not in kwarg:
msg['parent'] = TC_H_ROOT
This prevents any cake qdisc from being applied as a child qdisc.
The text was updated successfully, but these errors were encountered: