Fix grammar in obscure error message (#880)

The title really says it all. Change ``The forwarding-secret-file does not exists.`` to ``The forwarding-secret-file does not exist.``
This commit is contained in:
Remynfv
2022-12-11 19:40:58 -08:00
committed by GitHub
parent 8deb0ff70d
commit 495b796816

View File

@@ -496,7 +496,7 @@ public class VelocityConfiguration implements ProxyConfig {
throw new RuntimeException("The file " + forwardSecretFile + " is not a valid file or it is a directory.");
}
} else {
throw new RuntimeException("The forwarding-secret-file does not exists.");
throw new RuntimeException("The forwarding-secret-file does not exist.");
}
}
}