Skip to content

Commit 9542cc8

Browse files
committed
🐛 Fixing a bug.
Signed-off-by: mgorsk1 <[email protected]>
1 parent 931342e commit 9542cc8

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

rfcs/028-simplify-config-customization.md

+2-11
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,7 @@ N/A
5555
## Reference-level Explanation (aka Technical Details)
5656

5757
1. Add `get_config_class(component: string, base_class: Config) -> Config` method to amundsen common
58-
2. Use `get_config_class` in each service, for example:
59-
60-
```python
61-
from amundsen.common.config import get_config_class
62-
63-
_config_module_class = \
64-
os.getenv('METADATA_SVC_CONFIG_MODULE_CLASS') or _config_module_class
65-
66-
config_module_class = get_config_class('metadata', _config_module_class)
67-
```
58+
2. Use `get_config_class` in each service to render final config
6859

6960
Pseudocode:
7061

@@ -119,7 +110,7 @@ def get_config_class(component, base_class):
119110
return ConfigClass
120111
```
121112

122-
##### Amundsen Metadata
113+
##### Usage
123114

124115
```python
125116
import os

0 commit comments

Comments
 (0)