Skip to content

Commit b69dd4a

Browse files
Merge pull request #6147 from mysteriumnetwork/fixes/tequilapi
ClickUp - 869b48xm5
2 parents ebef5c6 + cb853eb commit b69dd4a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bin/docs_docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM redocly/redoc AS docs
1+
FROM redocly/redoc:v2.5.1 AS docs
22

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

docker-compose.e2e-basic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ services:
182182
- ./e2e/transactor:/transactor
183183

184184
redis:
185-
image: bitnami/redis:6.2.14
185+
image: redis:6.2.14
186186
container_name: 'hermes_redis'
187187
expose:
188188
- 6379

docker-compose.e2e-traversal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ services:
394394
ipv4_address: 172.31.0.213
395395

396396
redis:
397-
image: bitnami/redis:6.2.14
397+
image: redis:6.2.14
398398
container_name: 'hermes_redis'
399399
expose:
400400
- 6379

tequilapi/tequil/routes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import "strings"
2323
const TequilapiURLPrefix = "/tequilapi"
2424

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

2828
// IsUnprotectedRoute helper method for checking if route is unprotected
2929
func IsUnprotectedRoute(url string) bool {

0 commit comments

Comments
 (0)