You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
Within client names dots should be allowed for backward compatibility reasons.
Currently client names containg dots are failing because the client name pattern: [a-z0-9-_:]+ does not match:
[http-nio-8080-exec-4] WARN i.r.s.w.a.GlobalDefaultExceptionHandler - ErrorResponse (status: 500, IllegalArgumentException: Client name must match pattern: [a-z0-9-_:]+)
The pattern in should be adhusted accordingly: [a-z0-9-_:.]+
io/redlink/smarti/services/ClientService.java#27
The text was updated successfully, but these errors were encountered:
Within client names dots should be allowed for backward compatibility reasons.
Currently client names containg dots are failing because the client name pattern:
[a-z0-9-_:]+
does not match:The pattern in should be adhusted accordingly:
[a-z0-9-_:.]+
io/redlink/smarti/services/ClientService.java#27
The text was updated successfully, but these errors were encountered: