From 39400c4a2b930be505a417d30445e0ae21af459d Mon Sep 17 00:00:00 2001 From: Michael Opdenacker Date: Wed, 2 Oct 2024 15:08:02 +0000 Subject: [PATCH] bitbake: bitbake-prserver: use PRSERV_UPSTREAM as default setting Instead of PRSERVER_UPSTREAM. The intended variable name is PRSERV_UPSTREAM, as already used in lib/prserv/serv.py, an consistently with the PRSERV_HOST variable name. (Bitbake rev: b0c277f16f9fae51914024c1daecd5d3e4fac5c2) Signed-off-by: Michael Opdenacker Signed-off-by: Richard Purdie --- bitbake/bin/bitbake-prserv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/bin/bitbake-prserv b/bitbake/bin/bitbake-prserv index 580e021fda..3992e84eab 100755 --- a/bitbake/bin/bitbake-prserv +++ b/bitbake/bin/bitbake-prserv @@ -80,7 +80,7 @@ def main(): parser.add_argument( "-u", "--upstream", - default=os.environ.get("PRSERVER_UPSTREAM", None), + default=os.environ.get("PRSERV_UPSTREAM", None), help="Upstream PR service (host:port)", )