Skip to content

Commit

Permalink
Merge pull request #18 from xpublish-experiments/timeout-fix
Browse files Browse the repository at this point in the history
Fix catalogs not returning correct/all subcatalogs
  • Loading branch information
ptomasula authored Aug 28, 2024
2 parents 206673a + f2d674c commit 2a2cb3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/catalog_to_xpublish/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.3'
__version__ = "0.1.6"
from catalog_to_xpublish.factory import (
CatalogImplementation,
CatalogImplementationFactory,
Expand Down
3 changes: 2 additions & 1 deletion src/catalog_to_xpublish/server_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ def create_app(
router = app_inputs.catalog_implementation.catalog_router(
catalog_endpoint_obj=cat_end,
)
app.include_router(router=router.router)
# add prefix?
app.include_router(router=router.router, prefix=cat_prefix)
logger.info(
f'Returning successfully created server application!',
)
Expand Down

0 comments on commit 2a2cb3f

Please sign in to comment.