-
Notifications
You must be signed in to change notification settings - Fork 520
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
fix(server): reinitialize the progress to set up graph auth friendly #2411
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,6 +101,8 @@ | |
LOG.info("Skip init-store due to the backend store of '{}' " + | ||
"had been initialized", graph.name()); | ||
backendStoreInfo.checkVersion(); | ||
// Init the required information for creating the admin account (when switch from non-auth mode to auth mode) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please wrap line if exceed 80~100 chars |
||
graph.initSystemInfo(); | ||
Check warning on line 105 in hugegraph-server/hugegraph-dist/src/main/java/org/apache/hugegraph/cmd/InitStore.java Codecov / codecov/patchhugegraph-server/hugegraph-dist/src/main/java/org/apache/hugegraph/cmd/InitStore.java#L105
|
||
} else { | ||
initBackend(graph); | ||
} | ||
|
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.
@Z-HUANT seems we could move this log after L108? (due to the code logic)
could enhance it in another reviewed PR
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.
I'll put it in this PR later: #2408.