未验证 提交 9a55eb63 编写于 作者: S Siddharth Kothari 提交者: GitHub

Merge pull request #152 from jeet-parekh/neo4j

added params for neo4j
......@@ -71,6 +71,10 @@ func runImport(args []string) error {
verify := flagset.Bool("verify", false, "verify the source and destination connections")
srcUsername := flagset.String("src_username", "", "source username")
srcPassword := flagset.String("src_password", "", "source password")
srcRealm := flagset.String("src_realm", "", "source realm")
// use external config
config := flagset.String("config", "", "Path to external config file, if specified, only that is used")
......@@ -116,6 +120,9 @@ func runImport(args []string) error {
"ssl": *ssl,
"_transform_": *transformFile,
"log_dir": *logDir,
"username": *srcUsername,
"password": *srcPassword,
"realm": *srcRealm,
}
var destConfig = map[string]interface{}{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册