You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 9, 2023. It is now read-only.
Description
Client Python currently exposes too many methods to create a
TypeDBOptions
object. It can be instantiated through any of the following:TypeDBOptions().core()
TypeDBOptions().cluster()
TypeDBClusterOptions().core()
TypeDBClusterOptons().cluster()
This creates ambiguity in which methods to use, not to mention including nonsensical options.
Environment
Expected Output
Only two options should be exposed, probably among the following:
TypeDBOptions().core()
TypeDBOptions().cluster()
or
TypeDBOptions()
TypeDBClusterOptions()
or
TypeDBOptions().core()
TypeDBClusterOptions().cluster()
Actual Output
Client Python exposes the four options listed above.
The text was updated successfully, but these errors were encountered: