Márk Sági-Kazár
Márk Sági-Kazár
@mnapoli What do you think about testing? I usually don't test failing values when using an assertion library. The assertion lib itself is tested. Any objections if I remove the...
Why should it extend `StorageException`? If it extends `StorageException`, it will not be an `InvalidArgumentException` any more. Also, why should it be a `StorageException`. This is something that I never...
Well, if you want to catch all exceptions, catch `Exception`. I also don't see why it could help to catch all exceptions of the library. ( At least not in...
Could this be solved by simply using current path instead of last release? IMO symlinks are updated after code deploy, aren't they?
Thanks @gagern ! If you can also contribute a patch, it would be great!
Thanks for opening an issue @empijei ! Do you have any practical examples in mind where this would be a problem? Theoretically, you are right, but are there practical use...
Oh, I think I misunderstood your issue. So you are not after multiple simultaneous updates of the FakeClock, but receiving all ticks your timer is interested in. I'd say that's...
Do you mean go modules support? #59
According to https://tools.ietf.org/html/rfc7231#section-6.3.1 200 status code is perfectly valid for an OPTIONS request. As far as I know 204 is usually used when there is some kind of content involved...
> According to that same link, returning 200 OK for an OPTIONS request is valid only when it succeeded and it has data to return Although that's what the spec...