Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/docs_docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM redocly/redoc AS docs
FROM redocly/redoc:v2.5.1 AS docs

COPY tequilapi/docs/swagger.json /usr/share/nginx/html/tequilapi.json

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.e2e-basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ services:
- ./e2e/transactor:/transactor

redis:
image: bitnami/redis:6.2.14
image: redis:6.2.14
container_name: 'hermes_redis'
expose:
- 6379
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.e2e-traversal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ services:
ipv4_address: 172.31.0.213

redis:
image: bitnami/redis:6.2.14
image: redis:6.2.14
container_name: 'hermes_redis'
expose:
- 6379
Expand Down
2 changes: 1 addition & 1 deletion tequilapi/tequil/routes.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import "strings"
const TequilapiURLPrefix = "/tequilapi"

// UnprotectedRoutes these routes are not protected by reverse proxy
var UnprotectedRoutes = []string{"/auth/authenticate", "/auth/login", "/healthcheck", "/config/user", "/config/ui/features"}
var UnprotectedRoutes = []string{"/auth/authenticate", "/auth/login", "/healthcheck", "/config/ui/features"}

// IsUnprotectedRoute helper method for checking if route is unprotected
func IsUnprotectedRoute(url string) bool {
Expand Down
Loading