X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/93f2399eb591de701eb8ee417e86b54d13ddc840..abbf2cd9f8db49809fb1cb13358c99837b9ba367:/lib/opcodes.py diff --git a/lib/opcodes.py b/lib/opcodes.py index 3e159e1..1367c2a 100644 --- a/lib/opcodes.py +++ b/lib/opcodes.py @@ -821,7 +821,7 @@ class OpQuery(OpCode): @ivar what: Resources to query for, must be one of L{constants.QR_VIA_OP} @ivar fields: List of fields to retrieve - @ivar filter: Query filter + @ivar qfilter: Query filter """ OP_DSC_FIELD = "what" @@ -830,7 +830,7 @@ class OpQuery(OpCode): _PUseLocking, ("fields", ht.NoDefault, ht.TListOf(ht.TNonEmptyString), "Requested fields"), - ("filter", None, ht.TOr(ht.TNone, ht.TListOf), + ("qfilter", None, ht.TOr(ht.TNone, ht.TListOf), "Query filter"), ]