Spaces:
Building
Building
Update config/config_provider.py
Browse files
config/config_provider.py
CHANGED
@@ -30,7 +30,7 @@ class ConfigProvider:
|
|
30 |
_instance: Optional[ServiceConfig] = None
|
31 |
_lock = threading.RLock() # Reentrant lock for nested calls
|
32 |
_file_lock = threading.Lock() # Separate lock for file operations
|
33 |
-
_CONFIG_PATH = Path(__file__).parent
|
34 |
|
35 |
@staticmethod
|
36 |
def _normalize_date(date_str: Optional[str]) -> str:
|
|
|
30 |
_instance: Optional[ServiceConfig] = None
|
31 |
_lock = threading.RLock() # Reentrant lock for nested calls
|
32 |
_file_lock = threading.Lock() # Separate lock for file operations
|
33 |
+
_CONFIG_PATH = Path(__file__).parent / "service_config.jsonc"
|
34 |
|
35 |
@staticmethod
|
36 |
def _normalize_date(date_str: Optional[str]) -> str:
|