-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reload Configuration Variables (#570)
* Manage configuration variables inside an object. * Service that manages refreshing. * Read config info from conf.yaml * Update README.md * Callback on config variable change. * Restart control server on port change * Reload geoip file path * Tests for refreshing geoip file path * Add log level callback * Profiler class * Address review comments * Make ice_server default variables refresh correctly * Review comments * Move default config into python file to give mypy an easier time. * Add some tests and isort some imports * Fix readme link * Revert item access to ConfigStore * Handle default values with attribute syntax * Remove unused import * Minor review comments * Log config variable changes individually * Treat empty or absent config files properly * Re-use a single profiler object so it can be canceled later * Run profiler on COUNT or DURATION change * pipenv lock * Revert "pipenv lock" This reverts commit 173872b. Co-authored-by: Askaholic <[email protected]>
- Loading branch information
Showing
30 changed files
with
740 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import asyncio | ||
import os | ||
import time | ||
from typing import Dict | ||
|
Oops, something went wrong.