Skip to content

Commit

Permalink
Add tiny enhancements (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmacata authored Aug 20, 2021
1 parent 8159579 commit e204f19
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
tags: ['*.*.*']
paths-ignore: ['docs/**']
release:
types: [published, created]
types: [published]

jobs:
docker:
Expand Down
3 changes: 2 additions & 1 deletion src/openeo_grass_gis_driver/collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def get(self):
if status_code != 200:
return make_response(jsonify(
{"description": "An internal error occurred "
"while catching strds layers!"}, 400))
"while catching strds layers for mapset %s "
"in location %s !" % (mapset, location)}, 400))

for entry in strds_data:
strds_id = "%s.%s.strds.%s" % (location, mapset, entry)
Expand Down
3 changes: 3 additions & 0 deletions src/openeo_grass_gis_driver/register_actinia_processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,6 @@ def register_processes():

# TODO: add logger
print("... successfully registered modules!")

else:
print('... error registering modules!')

0 comments on commit e204f19

Please sign in to comment.