🐛 Send lowercase boolean in switch_capacity URL #7
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/switch-capacity-boolean"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
P0 bug fix #4/5.
switch_capacitybuilt?enable={enable}from a raw Python bool, producing?enable=True/?enable=False(capitalised). The backend expects lowercasetrue/false; relying on Spring lowercasing the value is fragile. Now sends?enable={str(enable).lower()}.py_compilepasses.