Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ private static HugeGraph initGraph(String configPath) throws Exception {
LOG.info("Skip init-store due to the backend store of '{}' " +
"had been initialized", graph.name());
Comment on lines 101 to 102
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Z-HUANT seems we could move this log after L108? (due to the code logic)

could enhance it in another reviewed PR

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll put it in this PR later: #2408.

backendStoreInfo.checkVersion();
/*
* Init the required information for creating the admin account
* (when switch from non-auth mode to auth mode)
*/
graph.initSystemInfo();
} else {
initBackend(graph);
}
Expand Down