-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why is nebula-client in this repo inconsistent with crates.io? #21
Comments
I noticed |
Thanks for your reply. I got it. So do you know which repo should I contribute for? |
You can submit some pull requests for repo https://github.com/vesoft-inc/nebula-rust, It's very welcome~~~ |
It's good. |
General Question
I tried to run code in
demos/tokio/src/v3_graph_client.rs
in my new project, and I wroteCargo.toml
as follows:When I run
cargo run 127.0.0.1 9669 root 'password'
, it raised an error:Error: DataDeserializeError(DataDeserializeError { field: None, kind: Custom("missing field
HTTP port") })
.I found that in this repo, the code in
nebula-client/src/v3/graph/client.rs
is written like this:And in crates.io code is like this:
After I commented
http_port
, the code can run successfully.So why is the code in this repo inconsistent with crates.io? What is this
http_port
used for? Can it be deleted?The text was updated successfully, but these errors were encountered: