diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2024-05-11 16:31:28 +0530 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-05-21 14:23:43 +0100 |
commit | 48d38aef22954cbed38d6a51fa438edac85040d7 (patch) | |
tree | a9698ec2bc18f3e7acd67560cc292390848904df | |
parent | 1aa8276c64f63ebc4bb0c5a1f152a585ebc873af (diff) | |
download | poky-48d38aef22954cbed38d6a51fa438edac85040d7.tar.gz |
bitbake: prserv: declare "max_package_pr" client hook
Add missing declaration for the max_package_pr client hook
(Bitbake rev: 0d4443359ec38ff98b7fbae0b0948d14f74523ce)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Cc: Joshua Watt <JPEWhacker@gmail.com>
Cc: Tim Orling <ticotimo@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/prserv/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/prserv/client.py b/bitbake/lib/prserv/client.py index 8471ee3046..99fc4e0f7f 100644 --- a/bitbake/lib/prserv/client.py +++ b/bitbake/lib/prserv/client.py | |||
@@ -65,7 +65,7 @@ class PRAsyncClient(bb.asyncrpc.AsyncClient): | |||
65 | class PRClient(bb.asyncrpc.Client): | 65 | class PRClient(bb.asyncrpc.Client): |
66 | def __init__(self): | 66 | def __init__(self): |
67 | super().__init__() | 67 | super().__init__() |
68 | self._add_methods("getPR", "test_pr", "test_package", "importone", "export", "is_readonly") | 68 | self._add_methods("getPR", "test_pr", "test_package", "max_package_pr", "importone", "export", "is_readonly") |
69 | 69 | ||
70 | def _get_async_client(self): | 70 | def _get_async_client(self): |
71 | return PRAsyncClient() | 71 | return PRAsyncClient() |