Skip to content

Commit 8042578

Browse files
committed
Fix pagination of functions again
1 parent 8619a2c commit 8042578

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/service-library/src/servicelib/rabbitmq/rpc_interfaces/webserver/functions/functions_rpc_interface.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ async def delete_function(
9494
@log_decorator(_logger, level=logging.DEBUG)
9595
async def list_functions(
9696
rabbitmq_rpc_client: RabbitMQRPCClient,
97-
*pagination_limit: int,
97+
*,
98+
pagination_limit: int,
9899
pagination_offset: int,
99100
) -> tuple[list[Function], PageMetaInfoLimitOffset]:
100101
return await rabbitmq_rpc_client.request(

0 commit comments

Comments
 (0)