Skip to content
Snippets Groups Projects
Commit d2970809 authored by Iustin Pop's avatar Iustin Pop
Browse files

Support 'null' in Luxi QueryJobs names field


Python code sometimes sends this, so let's support it even though it's
non-standard.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarHelga Velroyen <helgav@google.com>
parent fd958a3d
No related branches found
No related tags found
No related merge requests found
...@@ -324,8 +324,10 @@ decodeCall (LuxiCall call args) = ...@@ -324,8 +324,10 @@ decodeCall (LuxiCall call args) =
case call of case call of
ReqQueryJobs -> do ReqQueryJobs -> do
(jids, jargs) <- fromJVal args (jids, jargs) <- fromJVal args
let rargs = map fromJSString jargs jids' <- case jids of
return $ QueryJobs jids rargs JSNull -> return []
_ -> fromJVal jids
return $ QueryJobs jids' jargs
ReqQueryInstances -> do ReqQueryInstances -> do
(names, fields, locking) <- fromJVal args (names, fields, locking) <- fromJVal args
return $ QueryInstances names fields locking return $ QueryInstances names fields locking
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment