Remove misleading logging on router for JDBC queries (#12925)

This commit is contained in:
Rohan Garg 2022-08-22 11:58:51 +05:30 committed by GitHub
parent 3c129f6728
commit a879d91a20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -50,7 +50,9 @@ public class UnsecuredResourceFilter implements Filter
new AuthenticationResult(
AuthConfig.ALLOW_ALL_NAME,
AuthConfig.ALLOW_ALL_NAME,
AuthConfig.ALLOW_ALL_NAME,
// adding null so that the router doesn't try to decorate the request. It is ok since we're already bypassing
// authentication for unsecure paths.
null,
null
)
);