Skip to content

Commit ec27469

Browse files
authoredMar 17, 2025··
Merge pull request #216 from developmentseed/patch/fix-typo-issue215
fix typo
2 parents 88f8685 + 1e1f4bb commit ec27469

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed
 

‎CHANGES.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin
88

99
## [unreleased]
1010

11+
## [1.0.1] - 2025-03-17
12+
13+
* fix typo when using catalog_ttl
14+
1115
## [1.0.0] - 2025-03-07
1216

1317
### Added
@@ -386,7 +390,8 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin
386390

387391
- Initial release
388392

389-
[unreleased]: https://github.com/developmentseed/tipg/compare/1.0.0...HEAD
393+
[unreleased]: https://github.com/developmentseed/tipg/compare/1.0.1...HEAD
394+
[1.0.1]: https://github.com/developmentseed/tipg/compare/1.0.0...1.0.1
390395
[1.0.0]: https://github.com/developmentseed/tipg/compare/0.10.0...1.0.0
391396
[0.10.1]: https://github.com/developmentseed/tipg/compare/0.10.0...0.10.1
392397
[0.10.0]: https://github.com/developmentseed/tipg/compare/0.9.0...0.10.0

‎tipg/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ async def lifespan(app: FastAPI):
9090
CatalogUpdateMiddleware,
9191
func=register_collection_catalog,
9292
ttl=settings.catalog_ttl,
93-
dg_settings=db_settings,
93+
db_settings=db_settings,
9494
)
9595

9696
add_exception_handlers(app, DEFAULT_STATUS_CODES)

0 commit comments

Comments
 (0)
Please sign in to comment.