summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/hashserv/server.py
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2023-11-03 08:26:40 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-09 17:33:03 +0000
commit95481c8668238b291fd693dd8b8589d49850dfd9 (patch)
tree67655219f2c042d96d9eb3fb78d594483bb59143 /bitbake/lib/hashserv/server.py
parent33cde47e109f65dc27b989cb0194afcccfec9535 (diff)
downloadpoky-95481c8668238b291fd693dd8b8589d49850dfd9.tar.gz
bitbake: hashserv: server: Add owner if user is logged in
If a user is authenticated with the server, report them as the owner of a report (Bitbake rev: a9fd4a45bb6e5ac9832835897f594f3bbf67e1aa) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/hashserv/server.py')
-rw-r--r--bitbake/lib/hashserv/server.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/hashserv/server.py b/bitbake/lib/hashserv/server.py
index 439962f782..a86507830e 100644
--- a/bitbake/lib/hashserv/server.py
+++ b/bitbake/lib/hashserv/server.py
@@ -475,6 +475,9 @@ class ServerClient(bb.asyncrpc.AsyncServerConnection):
475 if k in data: 475 if k in data:
476 outhash_data[k] = data[k] 476 outhash_data[k] = data[k]
477 477
478 if self.user:
479 outhash_data["owner"] = self.user.username
480
478 # Insert the new entry, unless it already exists 481 # Insert the new entry, unless it already exists
479 if await self.db.insert_outhash(outhash_data): 482 if await self.db.insert_outhash(outhash_data):
480 # If this row is new, check if it is equivalent to another 483 # If this row is new, check if it is equivalent to another