We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab18f3d commit 41b20bfCopy full SHA for 41b20bf
1 file changed
openedx_authz/engine/watcher.py
@@ -1,5 +1,14 @@
1
"""
2
-Watcher for the enforcer with enhanced policy reload capabilities.
+Redis-based policy change watcher for the authorization enforcer.
3
+
4
+This module provides functionality to monitor policy changes in real-time using Redis
5
+as a message broker. It enables automatic policy reloading across multiple instances
6
+of the authorization system to maintain consistency and synchronization.
7
8
+The watcher connects to Redis on the configured host and port, listens for policy
9
+change events, and automatically triggers policy reloads when changes are detected.
10
+This ensures that all running instances of the authorization system stay synchronized
11
+with the latest policy configurations.
12
13
14
import logging
0 commit comments