-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only stop index container if one is actually running (#70)
So far, `qlever index` always called `docker rm -f ...` or `podman rm -f ...` before starting a new index build. However, old versions of podman return an error message when no container with the specified name is running. This is now fixed by checking explicitly whether a container is running and only if there is, trying to stop and remove it. Fixes #66.
- Loading branch information
Showing
3 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "qlever" | ||
description = "Script for using the QLever SPARQL engine." | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
authors = [ | ||
{ name = "Hannah Bast", email = "[email protected]" } | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters