Fix a typo in the test HTTP server
The test HTTP server code we use for testing had a typo where the the cookie
inserted was "JESSIONID" instead of "JSESSIONID". This led to confusion
and failing tempest tests. This patch changes it to "JSESSIONID" to avoid
confusion.
Change-Id: I7d6387c71ed96edead3a6a2338b0c78250d4c50d
diff --git a/octavia_tempest_plugin/contrib/httpd/httpd.go b/octavia_tempest_plugin/contrib/httpd/httpd.go
index db47242..58d66f2 100644
--- a/octavia_tempest_plugin/contrib/httpd/httpd.go
+++ b/octavia_tempest_plugin/contrib/httpd/httpd.go
@@ -95,7 +95,7 @@
flag.Parse()
resp = fmt.Sprintf("%s", *idPtr)
- sess_cookie.Name = "JESSIONID"
+ sess_cookie.Name = "JSESSIONID"
sess_cookie.Value = *idPtr
http.HandleFunc("/", root_handler)