From 667449b1b3f6cef743aa4c33718f1ef22876daf9 Mon Sep 17 00:00:00 2001 From: Lennart Kramer <lennart.kramer@stud.uni-goettingen.de> Date: Wed, 25 Jan 2023 17:06:31 +0100 Subject: [PATCH] update to 1.1.7 --- CHANGELOG | 5 +++++ goemaxima_version | 2 +- helmmaxima/Chart.yaml | 4 ++-- src/web/web.go | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a8f9a44..b613568 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +1.1.7 +* Fix bug where restart of container without DAC_OVERRIDE capability results in indefinite + restarts of the container +* Fix healthcheck not detecting inability to write to plot directory + 1.1.6 ----- * Add stackmaxima versions 2023010400 diff --git a/goemaxima_version b/goemaxima_version index 0664a8f..2bf1ca5 100644 --- a/goemaxima_version +++ b/goemaxima_version @@ -1 +1 @@ -1.1.6 +1.1.7 diff --git a/helmmaxima/Chart.yaml b/helmmaxima/Chart.yaml index a1a1bb3..d78d5cc 100644 --- a/helmmaxima/Chart.yaml +++ b/helmmaxima/Chart.yaml @@ -14,8 +14,8 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 1.1.6 +version: 1.1.7 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 1.1.6 +appVersion: 1.1.7 diff --git a/src/web/web.go b/src/web/web.go index 4906d56..10eabc9 100644 --- a/src/web/web.go +++ b/src/web/web.go @@ -460,7 +460,7 @@ func handler(w http.ResponseWriter, r *http.Request, queue <-chan *ChildProcess, health := r.FormValue("health") == "1" if r.Method == "GET" && r.FormValue("input") == "" && !health { hostname, _ := os.Hostname() - fmt.Fprintf(w, "Hostname: %s, version: 1.1.6\n", hostname) + fmt.Fprintf(w, "Hostname: %s, version: 1.1.7\n", hostname) return } // the maxima input to be evaluated -- GitLab