Closed alexist closed 11 months ago
Hi Alexis,
Could you :
Or (I prefer this) :
You should remove the .editorconfig from versionning.
Thanks for your PR !
Hi, in fact, I didn't change the semantic. Client send the timeout in seconds as usual, and the Command convert to milliseconds
protected long getExpire(String commandToken) throws ProtocolException {
try {
final int expire = Integer.parseInt(commandToken);
if (expire < 0) {
throw new ProtocolException();
}
return expire * 1000L;
....
For the editorconfig, i will remove it. Editorconfig allow to share the formater config
My bad, you are right.
I don't see this modification.
Concerning EditorConfig, I didn't know about this standard (now I do). You can keep it versioned.
I approve your PR.
Fix #30