Tomer Shalev

Results 45 issues of Tomer Shalev

Relevant code: ``` let url_str = format!("{}{}", config.address, path); ``` In my case `config.address` is `172.17.0.1:8500`, and `path` is `foo/bar`, which makes `172.17.0.1:8500foo.bar`, and result in `Failed to parse URL`....

See https://github.com/pierresouchay/consul-rust/pull/48. Test code: ``` let pair = KVPair { Key: String::from("testkey"), Value: String::from("testvalue"), ..Default::default() }; assert!(client.put(&pair, None).unwrap().0); let b64val = client.get("testkey", None).unwrap().0.unwrap().Value; let bytes = base64::decode(b64val).unwrap(); assert_eq!(std::str::from_utf8(&bytes).unwrap().to_string(), "testvalue"); ```...

bug

This is not httpie tool request per-se, instead as an avid user of the httpie tool, I find it frustrating that in the network tab of the Chrome DevTools, there's...

enhancement

Just a small coding commit to use the contextmanager feature of tmpfile package. Before submitting your PR, please review the following checklist: - [x] **CHOOSE CORRECT BRANCH**: if filing a...

blocked

## Priority Low ## What Changed & Why Improve coding style in selected places. No functional change. ## Testing I ran unit-tests, by I am not comfortable enough with it....

This is a breaking change, as it might break existing code that uses `insertMiddlewareBefore` and `insertMiddlewareAfter`, so this PR should be merge in next major ## Priority Low ## What...

I created the following model: ```javascript jsonApiInstance.define('screen', { name: '' } ``` When I send `patch` request, I get the following error: ``` :5000/screens/3:1 PATCH http://localhost:5000/screens/3 409 (CONFLICT) minilog.js?2831:17 devour...

In order to `patch` to work properly, one need to add the `id` field to the `payload` parameter of the `patch` command: ```javascript export const setScreenHomeAction = ({commit}, {screenId, isHome})...

In https://gliderlabs.github.io/registrator/latest/user/quickstart/ the link to _boot2docker_ is set to http://boot2docker.io/, which now redirects to https://www.topworkboots.com/ ("Best Work Boots Reviews 2020") :-) The link should be set to https://github.com/boot2docker/boot2docker instead.