Yao Zongyou
Yao Zongyou
I am also facing the same issue when building old version of folly, but after check out the master branch of folly, the issue goes away. After some digging, i...
> If anyone's interested, I got around this problem with [my own BodyLocation class](https://github.com/loco/loco-php-sdk/blob/master/src/Http/Request/BodyLocation.php). > > This can be set by overriding the request serializer and [passing it thus](https://github.com/loco/loco-php-sdk/blob/master/src/Http/Serializer.php#L24). this...
The same question occurs to me, is this will be fixed?
``` Caused by: Error during dispatch: error trying to connect: Unsupported scheme http ``` ditto, also encountered this issue.
@leethomason is there any plan to fix this issue? I think in both cases, we should preserve the space if PRESERVE_WHITESPACE flag is set.
looking forward to this feature too~
same problem here, is there any will to merge this pull request?
Currently without this commit, normal retry can be worked around this: ```rust fn retry(max_attempts: usize, backoff: B, mut op: F) -> Result where F: FnMut() -> Result, B: backoff::backoff::Backoff, {...
after some dig, the `time` crate using libc's `localtime_r` function to convert a timestamp to the user's specified timezone localtime, and as the manual suggests: [for portable code, tzset(3) should...