diff --git a/CHANGELOG b/CHANGELOG index a8f9a44e06ef5328668a253d7589491cd8f5b237..b61356852be84d996a73653d0b1d28fb73d38377 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 0664a8fd291f962d348db7633b2c79e8188f62fa..2bf1ca5f549c1a54d2aff9891bea88c940d7d4e6 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 a1a1bb3195239352af8601a3e97f8f36cbe2d583..d78d5cc20fd8b6a2bc0d5bb7634e7c99848a97c7 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 4906d5639e64b2323a05096b05fdf86d78db622d..10eabc9fa51d4bcf5fcb69eb15365b50c696f96f 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