Results 17 comments of Jeff Wen

Here the full trackback. ``` [2018-06-14 13:45:36 +0800] [37430] [ERROR] ConnectionResetError: [Errno 104] Connection reset by peer The above exception was the direct cause of the following exception: Traceback (most...

Sorry it took so long. ``` 2018-05-31 09:30:24.272 UTC [1985] LOG: could not receive data from client: Connection reset by peer 2018-05-31 09:30:24.273 UTC [1979] LOG: could not receive data...

@q210 Yes I'm deploying postsql with docker-swarm. I've tried it out, your solution absolutely works.

``` static int fd_n_; static int fd_c_; static int fd_h_; static int fd_w_; static std::shared_ptr fd_net_; static string path_to_fd_model_; ```

I think I figured it out. In `RouteTransition`, props is cloned into `component`, which is wrapped by a `Route`. The `Route` class does not pass props down.

I replaced [that](https://github.com/maisano/react-router-transition/blob/df5263b6030209fe6ff55d776fa177452a18f05f/src/AnimatedRoute.js#L20) `Route` element with this: ```javascript const TransRoute = ({component, style, ...props}) => ( React.cloneElement(component, {style, ...props})} /> ); ``` And it works.

I tried to manually add a 0-tagged value, and shift all elements down to create a zero-based array. And it works fine.