# HG changeset patch # User Goffi # Date 1678978571 -3600 # Node ID 48e8b3dba793a1549e58b5eaeccb03e8f4917f82 # Parent 56e5b18f4d06c73e6b55b6fe468d407bdd8e7439 component AP gateway (http/outbox): return data when no RSM is available diff -r 56e5b18f4d06 -r 48e8b3dba793 sat/plugins/plugin_comp_ap_gateway/http_server.py --- a/sat/plugins/plugin_comp_ap_gateway/http_server.py Thu Mar 16 12:33:33 2023 +0100 +++ b/sat/plugins/plugin_comp_ap_gateway/http_server.py Thu Mar 16 15:56:11 2023 +0100 @@ -722,6 +722,10 @@ "orderedItems": ordered_items } + if "rsm" not in metadata: + # no RSM available, we return what we have + return ret_data + # AP OrderedCollection must be in reversed chronological order, thus the opposite # of what we get with RSM (at least with Libervia Pubsub) if not metadata["complete"]: