Skip to content

Commit

Permalink
Fix regression with archive tasks display
Browse files Browse the repository at this point in the history
  • Loading branch information
allegroai committed Jul 31, 2023
1 parent 81b93e6 commit 2263e7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apiserver/database/model/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ class NewListFieldBucketHelper:
}
default_operator = Q.OR
mongo_modifiers = {
Q.AND: {True: "all", False: "not__all"},
# not_all modifier currently not supported due to the backwards compatibility
Q.AND: {True: "all", False: "nin"},
Q.OR: {True: "in", False: "nin"},
}

Expand Down

0 comments on commit 2263e7c

Please sign in to comment.