Markus Unterwaditzer

Results 119 issues of Markus Unterwaditzer

When a series of rebalance events occurs, this avoids recreating the strategy from within callbacks entirely (making on_revoke in particular faster). Instead the strategy is created whenever the first message...

While working on #270 I noticed that with certain transformation functions, the returned bytestring did not get stored in the output buffer at all. It's not clear to me why...

bug

We currently do not have those and as a result, every consumer writes their own. i tried to add them in https://github.com/getsentry/arroyo/pull/235 -- but that PR ended up being a...

enhancement

We currently recreate the processing strategy everytime we assign/revoke a set of partitions. To my knowledge there are two reasons for that: 1. We want to flush out old messages...

- When listing items by doing `GET /foldername/` the mtime of `file.txt` is used. - When fetching items by doing `GET /foldername/file.txt`, the mtime of `.~file.txt` is used. I guess...

When sending a PUT-request with a header like `If-Match: "lolnope"`, reStore will return a 500 internal server error. The stacktrace acquired with #25 is: ``` TypeError: Cannot read property '0'...

The folder listing in draft-05 looks like this: ``` { "@context": "http://remotestorage.io/spec/folder-description", "items": { "abc": { "ETag": "DEADBEEFDEADBEEFDEADBEEF", "Content-Type": "image/jpeg", "Content-Length": 82352 } } } ``` Your server responds with...

In https://github.com/remotestorage/spec/commit/04d91a87082272c947760f5b0a917d8f87b32c94 we defined that Accept-Ranges should be sent, but not for which request types. I currently send it for every GET/HEAD to a user folder/file.

bug
clarity

> Subsequently, if is the URL of a folder, then the URL of an > item contained in it is: > > ``` > URI_ENCODE( ) > ``` This seems...

bug
clarity

URIs don't specify any encoding for percent-encoded characters, IRIs do (UTF-8). I think we should switch to mentioning IRIs.