LEI Zongmin

Results 25 comments of LEI Zongmin

- 你使用的 clouds 模块是哪个版本? - Node.js是哪个版本? - 配置的redis连接是否为有效的? - 详细的报错信息是什么?

从出错信息判断,应该是 server 端没有及时做响应,导致 client 调用它超时。 能否将相关的代码贴上来?

**客户端和服务端必须搭配使用!**

加什么超时?不是已经返回超时错误了吗?

没启动服务端的时候不是会返回这个错误吗? ![image](https://cloud.githubusercontent.com/assets/841625/14912185/1a3681b0-0e2d-11e6-9e0a-1a9035a9729d.png)

I have trying to set the `BINDGEN_EXTRA_CLANG_ARGS` environment variable (refer to [rust-bindgen - environment-variables](https://github.com/rust-lang/rust-bindgen#environment-variables)): ``` export BINDGEN_EXTRA_CLANG_ARGS="-I /Library/Developer/CommandLineTools/usr/include/c++/v1 -I /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include" ``` Now `cargo pgx run pg13` is successful running. I...

session-redis 连接不成功不会报错,建议再次确认一下本地 redis 和 mongodb 服务是否正常,以及 nodeclub 中相应的配置信息是否正确。

- `connect-redis` 模块在处理 redis 连接出错问题时,触发 `disconnect` 事件:https://github.com/tj/connect-redis/blob/master/lib/connect-redis.js#L102 - `express-session` 在监听到 `store` 实例的 `disconnect` 事件时设置 `storeReady = false`:https://github.com/expressjs/session/blob/master/index.js#L150 - 在处理请求时,如果 `storeReady = false` 则直接跳过:https://github.com/expressjs/session/blob/master/index.js#L159 所以存储引擎无法连接成功时不会报错,其表现是没有 `req.session` ,接下来程序中任何读取 `req.session` 上的变量的操作都会报错 `TypeError: Cannot...

I have located the code location that triggers the null pointer exception: https://github.com/nodejs/node/compare/master...leizongmin:fix/issue-43205 ```diff ->Uint32Value(context) .ToChecked(); if (type == ScriptType::kScript) { - contextify::ContextifyScript* wrap = env->id_to_script_map.find(id)->second; - object = wrap->object();...