We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c90455 commit 10bd6bcCopy full SHA for 10bd6bc
core/src/main/java/org/neo4j/gds/api/CSRGraphStoreFactory.java
@@ -58,8 +58,10 @@ protected CSRGraphStore createGraphStore(
58
59
protected void logLoadingSummary(GraphStore graphStore) {
60
var sizeInBytes = MemoryUsage.sizeOf(graphStore);
61
- var memoryUsage = MemoryUsage.humanReadable(sizeInBytes);
62
- progressTracker.logInfo(formatWithLocale("Actual memory usage of the loaded graph: %s", memoryUsage));
+ if (sizeInBytes >= 0) {
+ var memoryUsage = MemoryUsage.humanReadable(sizeInBytes);
63
+ progressTracker.logInfo(formatWithLocale("Actual memory usage of the loaded graph: %s", memoryUsage));
64
+ }
65
}
66
67
protected abstract GraphSchema computeGraphSchema(
0 commit comments