Skip to content

Commit 8791324

Browse files
committed
fix version comparison
1 parent 7c3cc83 commit 8791324

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ayon_api/server_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1799,7 +1799,7 @@ def enroll_event_job(
17991799
):
18001800
kwargs["ignoreOlderThan"] = ignore_older_than
18011801
if ignore_sender_types is not None:
1802-
if (major, minor, patch) > (1, 5, 4):
1802+
if (major, minor, patch) <= (1, 5, 4):
18031803
raise ValueError(
18041804
"Ignore sender types are not supported for"
18051805
f" your version of server {self.server_version}."

0 commit comments

Comments
 (0)