From 72c0ce14470e7431f7df02fa9dc7afb441deb27e Mon Sep 17 00:00:00 2001
From: Jorrit Schaap <schaap@astron.nl>
Date: Mon, 29 Feb 2016 08:27:27 +0000
Subject: [PATCH] Task #8887: return empty dict on empty request

---
 SAS/MoM/MoMQueryService/momqueryservice.py | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/SAS/MoM/MoMQueryService/momqueryservice.py b/SAS/MoM/MoMQueryService/momqueryservice.py
index 7acb063da39..a5d73a4cd8c 100755
--- a/SAS/MoM/MoMQueryService/momqueryservice.py
+++ b/SAS/MoM/MoMQueryService/momqueryservice.py
@@ -112,6 +112,9 @@ class MoMDatabaseWrapper:
         :param mixed mom_ids comma seperated string of mom2object id's, or list of ints
         :rtype list of dict's key value pairs with the project details
         '''
+        if not mom_ids:
+            return {}
+
         if _isListOfInts(mom_ids):
             ids = mom_ids
         else:
@@ -183,6 +186,9 @@ class ProjectDetailsQueryHandler(MessageHandlerInterface):
         self.momdb = MoMDatabaseWrapper(self.dbcreds)
 
     def getProjectDetails(self, mom_ids):
+        if not mom_ids:
+            return {}
+        
         ids = _idsFromString(mom_ids)
         if not _isListOfInts(ids):
             raise ValueError("%s is not a proper list of ints" % str(mom_ids))
-- 
GitLab