Polishing

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

View File

@@ -676,7 +676,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);
}