justinmclean opened a new issue, #8511:
URL: https://github.com/apache/gravitino/issues/8511

   ### What would you like to be improved?
   
   Credential type and credential context should have a space between them. 
Here's a unit test showing the issue:
   ```
     @Test
     void testToStringContainsSpaceBetweenFields() {
       PathBasedCredentialContext context =
           new PathBasedCredentialContext("user", ImmutableSet.of(), 
ImmutableSet.of());
       CredentialCacheKey key = new CredentialCacheKey("s3-token", context);
   
       Assertions.assertTrue(
           key.toString().contains("credentialType: s3-token 
credentialContext:"));
     }
   ```
   
   ### How should we improve?
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to