From 3b6f5d70ecac096a70a661a6e9f1011c0ef6c34f Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Tue, 2 Feb 2021 12:03:40 +0300 Subject: [PATCH] [#120] object: Document processing of filters with match type NOT_PRESENT The behavior of the node when processing system search filters with match type NOT_PRESENT is declared undefined. Signed-off-by: Leonard Lyubich --- object/service.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/object/service.proto b/object/service.proto index 4116de6..d31422a 100644 --- a/object/service.proto +++ b/object/service.proto @@ -350,6 +350,10 @@ message SearchRequest { // * $Object:PHY \ // Returns only objects physically stored in the system. This filter is // activated if the `key` exists, disregarding the value and matcher type. + // + // Note: using filters with a key with prefix `$Object:` and match type + // `NOT_PRESENT `is not recommended since this is not a cross-version approach. + // Behavior when processing this kind of filters is undefined. message Filter { // Match type to use MatchType match_type = 1;