From 73ecb48113eb8d2a37cee89e3481415089867709 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Thu, 8 Aug 2024 14:25:00 +0200 Subject: src: log without backtrace in not implemented functions Don't log a backtrace when a not implemented function is called in ogClient. Log a "Function not implemented" message. --- src/virtual/ogOperations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/virtual/ogOperations.py') diff --git a/src/virtual/ogOperations.py b/src/virtual/ogOperations.py index c17bfb4..763c126 100644 --- a/src/virtual/ogOperations.py +++ b/src/virtual/ogOperations.py @@ -467,10 +467,10 @@ class OgVirtualOperations: return json_dict def cache_delete(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def cache_fetch(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def software(self, request, path, ogRest): DPKG_PATH = '/var/lib/dpkg/status' -- cgit v1.2.3-18-g5258