Skip to content

Commit 6f889ba

Browse files
authored
fix: Call run_queued_queries procedure. (#377)
1 parent de8657f commit 6f889ba

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
- Added documentation for cloud-native bucket access [#364](https://github.com/developmentseed/eoapi-k8s/pull/364)
11-
- Removed unused testing variable and unused deploy script [#369](https://github.com/developmentseed/eoapi-k8s/pull/369)
12-
1310
### Added
1411

1512
- Added support for ConfigMap reference-based queryables configuration in addition to file-based queryables. Queryables can now be sourced from external ConfigMaps using `configMapRef`, from chart files using `file`, or a combination of both [#360](https://github.com/developmentseed/eoapi-k8s/pull/360)
13+
- Added documentation for cloud-native bucket access [#364](https://github.com/developmentseed/eoapi-k8s/pull/364)
14+
- Removed unused testing variable and unused deploy script [#369](https://github.com/developmentseed/eoapi-k8s/pull/369)
1615

1716
## Changed
1817

1918
- Unified scripts and removed Makefile, combined all into one CLI command `eoapi-cli` [#359](https://github.com/developmentseed/eoapi-k8s/pull/359)
2019
- Added stac-auth-proxy for authentication and authorization on the STAC API [#358](https://github.com/developmentseed/eoapi-k8s/pull/358)
20+
- Fixed call to run_queued_queries pgstac procedure call [#377](https://github.com/developmentseed/eoapi-k8s/pull/377)
2121

2222
## [0.8.0] - 2025-11-20
2323

charts/eoapi/templates/database/pgstacbootstrap/queue-processor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
- "/bin/sh"
3232
- "-c"
3333
- |
34-
psql -c "RUN run_queued_queries();"
34+
psql -c "CALL run_queued_queries();"
3535
env:
3636
{{- include "eoapi.postgresqlEnv" . | nindent 14 }}
3737
resources:

charts/eoapi/tests/pgstac_config_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ tests:
9898
value: "*/15 * * * *"
9999
- matchRegex:
100100
path: spec.jobTemplate.spec.template.spec.containers[0].command[2]
101-
pattern: "RUN run_queued_queries\\(\\);"
101+
pattern: "CALL run_queued_queries\\(\\);"
102102

103103
# Extent Updater Tests
104104
- it: should create extent updater when update_collection_extent is false

0 commit comments

Comments
 (0)