Polishing

Add whitespace to exception message
This commit is contained in:
Mark Paluch
2020-12-02 13:59:03 +01:00
parent ff57fe73d2
commit dc09166d7a

View File

@@ -690,7 +690,7 @@ public class SecretLeaseContainer extends SecretLeaseEventPublisher implements I
onLeaseExpired(requestedSecret, lease);
}
exceptionToUse = new VaultException(String.format("Cannot renew lease: Status %s %s%s",
exceptionToUse = new VaultException(String.format("Cannot renew lease: Status %s %s %s",
httpException.getRawStatusCode(), httpException.getStatusText(),
VaultResponses.getError(httpException.getResponseBodyAsString())), e);
}