File tree Expand file tree Collapse file tree 6 files changed +10
-6
lines changed
Expand file tree Collapse file tree 6 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -910,7 +910,7 @@ <h2 id="sqlitedatabaseconfiguration">SQLiteDatabaseConfiguration</h2>
910910< tr class ="odd ">
911911< td > db_path</ td >
912912< td > string</ td >
913- < td > </ td >
913+ < td > Path to file where SQLite database is stored </ td >
914914</ tr >
915915</ tbody >
916916</ table >
Original file line number Diff line number Diff line change @@ -336,7 +336,7 @@ SQLite database configuration.
336336
337337| Field | Type | Description |
338338| -------| ------| -------------|
339- | db_path | string | |
339+ | db_path | string | Path to file where SQLite database is stored |
340340
341341
342342## ServiceConfiguration
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ class "RHIdentityConfiguration" as src.models.config.RHIdentityConfiguration {
158158 required_entitlements : Optional[list[str]]
159159}
160160class "SQLiteDatabaseConfiguration" as src.models.config.SQLiteDatabaseConfiguration {
161- db_path : str
161+ db_path : Optional[ str]
162162}
163163class "ServiceConfiguration" as src.models.config.ServiceConfiguration {
164164 access_log : bool
Original file line number Diff line number Diff line change @@ -89,7 +89,11 @@ def check_cors_configuration(self) -> Self:
8989class SQLiteDatabaseConfiguration (ConfigurationBase ):
9090 """SQLite database configuration."""
9191
92- db_path : str
92+ db_path : str = Field (
93+ ...,
94+ title = "DB path" ,
95+ description = "Path to file where SQLite database is stored" ,
96+ )
9397
9498
9599class InMemoryCacheConfig (ConfigurationBase ):
You can’t perform that action at this time.
0 commit comments