Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 53de320

Browse files
committed
Fix stream logs REST endpoint access
1 parent ce5565f commit 53de320

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spring-cloud-dataflow-server-core/src/main/resources/META-INF/dataflow-server-defaults.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,9 @@ spring:
186186
- GET /streams/validation/* => hasRole('ROLE_VIEW')
187187

188188
# Stream Logs
189-
- GET /streams/logs/** => hasRole('ROLE_VIEW')
189+
- GET /streams/logs => hasRole('ROLE_VIEW')
190+
- GET /streams/logs/* => hasRole('ROLE_VIEW')
191+
- GET /streams/logs/*/* => hasRole('ROLE_VIEW')
190192

191193
# Task Definitions
192194

0 commit comments

Comments
 (0)