Skip to content

Commit 0f92974

Browse files
Merge pull request #574 from EOxServer/memory-leak-fix
updated Unlink for shape file
2 parents 0998bea + 6b518aa commit 0f92974

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- 'pyproject.toml'
1111
- 'eoxserver/**'
1212
- 'autotest/**'
13+
- 'requirements.txt'
1314
jobs:
1415
build-docker:
1516
runs-on: ubuntu-latest

eoxserver/services/ows/wps/processes/get_cloud_coverage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,4 +295,4 @@ def _create_geometry_feature_in_memory(wkt_geometry: str):
295295

296296
yield memory_path
297297

298-
gdal.Unlink(memory_path)
298+
drv.DeleteDataSource(memory_path)

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ psycopg2
99
lxml
1010
pycql==0.0.8
1111
matplotlib
12+
numpy<2.0.0
1213
pyows>=0.2.6
1314
python-keystoneclient<6.0.0
1415
python-swiftclient<5.0.0

0 commit comments

Comments
 (0)