-
Notifications
You must be signed in to change notification settings - Fork 27
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
metaclient timeout use paramter from configs #4
Conversation
Thanks again for your contribution, please make code format first~ |
@@ -15,10 +15,10 @@ import com.vesoft.nebula.meta.{PropertyType, Schema} | |||
import scala.collection.JavaConverters._ | |||
import scala.collection.mutable | |||
|
|||
class MetaProvider(addresses: List[Address]) extends AutoCloseable { | |||
class MetaProvider(addresses: List[Address], timeout: Int, connectionRetry: Int, executionRetry: Int) extends AutoCloseable { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
parameters are changed, please sync the test code to make the compile works.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PropertyType.GEOGRAPHY not exists ,how to fix it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PropertyType.GEOGRAPHY has been supported in the latest java client, maybe your local maven repo is old. If you use IDEA, you can config it through preferences -> Build,Execution,Deployment -> Build tools -> Maven
, choose Always update snapshots
Hi liyanl, you need to modify the Instantiate of MetaProvider in MetaProviderTest file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.