Skip to content

Commit

Permalink
fix ci bugs of gs interactive
Browse files Browse the repository at this point in the history
  • Loading branch information
shirly121 committed Jan 10, 2025
1 parent 3737edc commit 8e7fcdc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ private static GraphProperties getTestGraph(Configs configs) {
case "rust-mcsr":
testGraph = TestGraphFactory.RUST_MCSR;
break;
case "native-mcsr":
logger.info("using native-mcsr as test graph");
case "cpp-mcsr":
logger.info("using cpp-mcsr as test graph");
testGraph = TestGraphFactory.CPP_MCSR;
break;
default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public class YamlConfigs extends Configs {
if (configs.get("compute_engine.store.type") != null) {
return configs.get("compute_engine.store.type");
} else {
return "native-mcsr";
return "cpp-mcsr";
}
})
.put(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public StaticIrMetaFetcher(IrMetaReader dataReader, IrMetaTracker tracker) throw
try {
return this.reader.readStats(meta.getGraphId());
} catch (Exception e) {
logger.warn("failed to read graph statistics, error is: " + e);
logger.warn("failed to read graph statistics, error is {}", e);
return null;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public static class Config {
// option configurations.
public static final com.alibaba.graphscope.common.config.Config<String> TYPE =
com.alibaba.graphscope.common.config.Config.stringConfig(
"type", "UNKNOWN"); // cypher or native
"type", "UNKNOWN"); // cypher or cpp
public static final com.alibaba.graphscope.common.config.Config<String> QUERY =
com.alibaba.graphscope.common.config.Config.stringConfig("query", "UNKNOWN");
}
Expand Down

0 comments on commit 8e7fcdc

Please sign in to comment.