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
Issues:
FixesF5Networks#1137
Problem: Member modify incorrectly checks value of 'state' attribute
when user passes 'session' attribute to modify.
Analysis: patch['state'] is not correct. should be patch['session']
Tests: Added new test, test_session_modify(), to match existing test
test_state_modify().
The modify command incorrectly checks value of "state" attribute when "session" attribute is passed in modify(). See line 217 in pool.py:
if 'session' in patch: if patch['session'] != 'user-enabled' and patch['state'] != \ 'user-disabled':
patch['state'] should be patch['session']
This is causing an error in the F5 OpenStack agent when users try to set admin state up/down for a pool member.
The text was updated successfully, but these errors were encountered: