Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…into fix-hang

Committed-by: xiaolei.zl from Dev container
  • Loading branch information
zhanglei1949 committed Dec 9, 2024
2 parents 0534551 + 6a8207e commit f63411e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ private synchronized void syncMeta() {
(meta == null) ? null : meta.getSchema().getSchemaSpec(Type.IR_CORE_IN_JSON));
// if the graph id or schema version is changed, we need to update the statistics
if (this.currentState == null
|| !this.currentState.getGraphId().equals(meta.getGraphId())
// NOTE(lei): We could not use graph id to determine whether the graph is
// changed. Because the graph id is generated by the graph store, it may be
// different.
// || !this.currentState.getGraphId().equals(meta.getGraphId())
|| !this.currentState
.getSchema()
.getVersion()
Expand Down

0 comments on commit f63411e

Please sign in to comment.