We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96c5337 commit b8f8df0Copy full SHA for b8f8df0
1 file changed
src/conductor/asyncio_client/configuration/configuration.py
@@ -121,11 +121,11 @@ def __init__(
121
self.auth_secret = os.getenv("CONDUCTOR_AUTH_SECRET")
122
123
# Additional worker properties with environment variable fallback
124
- self.poll_interval = polling_interval or self._get_env_int(
+ self.polling_interval = polling_interval or self._get_env_int(
125
"CONDUCTOR_WORKER_POLL_INTERVAL", 100
126
)
127
self.domain = domain or os.getenv("CONDUCTOR_WORKER_DOMAIN", "default_domain")
128
- self.poll_interval_seconds = polling_interval_seconds or self._get_env_int(
+ self.polling_interval_seconds = polling_interval_seconds or self._get_env_int(
129
"CONDUCTOR_WORKER_POLL_INTERVAL_SECONDS", 0
130
131
0 commit comments