diff --git a/confluent_server/confluent/httpapi.py b/confluent_server/confluent/httpapi.py index 669411f9..986ce51b 100644 --- a/confluent_server/confluent/httpapi.py +++ b/confluent_server/confluent/httpapi.py @@ -416,7 +416,7 @@ def resourcehandler_backend(env, start_response): reqtype = env['CONTENT_TYPE'] operation = opmap[env['REQUEST_METHOD']] querydict = _get_query_dict(env, reqbody, reqtype) - if 'restexplorerop' in querydict: + if operation != 'retrieve' and 'restexplorerop' in querydict: operation = querydict['restexplorerop'] del querydict['restexplorerop'] authorized = _authorize_request(env, operation)