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
fix: handle empty 200 response from PUT /v1/license (#39)
The Redis Enterprise API returns 200 with an empty body for license
uploads, but the client tried to deserialize it as JSON, causing an
EOF parse error even though the upload succeeded.
Adds put_action() method (matching existing post_action pattern) for
endpoints that return no content. LicenseHandler::update() now uses
put_action + a follow-up GET to return the installed license.
Fixesredis-developer/redisctl#895.
0 commit comments