Merge pull request #12763 from SergeTupchiy/EMQX-1206-ds-mqueue-inflight-api-not-implemented
fix: return not_implemented error for mqueue/inflight msgs queries
This commit is contained in:
commit
c2ace30318
|
@ -264,7 +264,9 @@ info(awaiting_rel_max, #{props := Conf}) ->
|
||||||
info(await_rel_timeout, #{props := _Conf}) ->
|
info(await_rel_timeout, #{props := _Conf}) ->
|
||||||
%% TODO: currently this setting is ignored:
|
%% TODO: currently this setting is ignored:
|
||||||
%% maps:get(await_rel_timeout, Conf).
|
%% maps:get(await_rel_timeout, Conf).
|
||||||
0.
|
0;
|
||||||
|
info({MsgsQ, _PagerParams}, _Session) when MsgsQ =:= mqueue_msgs; MsgsQ =:= inflight_msgs ->
|
||||||
|
{error, not_implemented}.
|
||||||
|
|
||||||
-spec stats(session()) -> emqx_types:stats().
|
-spec stats(session()) -> emqx_types:stats().
|
||||||
stats(Session) ->
|
stats(Session) ->
|
||||||
|
|
|
@ -942,6 +942,9 @@ client_msgs_schema(OpId, Desc, ContExample, RespSchema) ->
|
||||||
),
|
),
|
||||||
404 => emqx_dashboard_swagger:error_codes(
|
404 => emqx_dashboard_swagger:error_codes(
|
||||||
['CLIENTID_NOT_FOUND'], <<"Client ID not found">>
|
['CLIENTID_NOT_FOUND'], <<"Client ID not found">>
|
||||||
|
),
|
||||||
|
?NOT_IMPLEMENTED => emqx_dashboard_swagger:error_codes(
|
||||||
|
['NOT_IMPLEMENTED'], <<"API not implemented">>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1217,6 +1220,11 @@ list_client_msgs(MsgType, ClientID, QString) ->
|
||||||
case emqx_mgmt:list_client_msgs(MsgType, ClientID, PagerParams) of
|
case emqx_mgmt:list_client_msgs(MsgType, ClientID, PagerParams) of
|
||||||
{error, not_found} ->
|
{error, not_found} ->
|
||||||
{404, ?CLIENTID_NOT_FOUND};
|
{404, ?CLIENTID_NOT_FOUND};
|
||||||
|
{error, not_implemented} ->
|
||||||
|
{?NOT_IMPLEMENTED, #{
|
||||||
|
code => 'NOT_IMPLEMENTED',
|
||||||
|
message => <<"API not implemented for persistent sessions">>
|
||||||
|
}};
|
||||||
{Msgs, Meta = #{}} when is_list(Msgs) ->
|
{Msgs, Meta = #{}} when is_list(Msgs) ->
|
||||||
format_msgs_resp(MsgType, Msgs, Meta, QString)
|
format_msgs_resp(MsgType, Msgs, Meta, QString)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue