I used gRPC In my application, but I got an error like this { [Error] code: 14, metadata: Metadata { _internal_repr: {} } }, I can't understand what's meaning. thanks for your answer .
相关问题
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fs
- google-drive can't get push notifications
- How to reimport module with ES6 import
- Why is `node.js` dying when called from inside pyt
- How to verify laravel passport api token in node /
相关文章
- Spring WebFlux+Netty 中怎么配置 HTTP/2?
- node连接远程oracle报错
- Socket编程 TCP方式发送时间有点长
- How can make folder with Firebase Cloud Functions
- @angular-cli install fails with deprecated request
- node.js modify file data stream?
- How to resolve hostname to an ip address in node j
- GRPC: make high-throughput client in Java/Scala
This means that the server you sent the request to responded with status code 14: Unavailable. This is supposed to be a temporary status, so you should be able to successfully make the request just by sending it again.