Actions
Bug #15577
closedRudder-api-client fails to clean Null parameters before making API calls
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
0
Name check:
To do
Fix check:
To do
Regression:
Description
When making call to some methods with Null params (the default ones) I got:
File "./rudder-api-client/lib.python/rudder.py", line 254, in create_directive
clean_params(data)
File "./rudder-api-client/lib.python/rudder.py", line 656, in clean_params
for k in data.keys():
RuntimeError: dictionary changed size during iteration
In fact we are iterating over all keys of the dict and removing somes, which is not the proper way.
Actions