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 f550c4d commit cd4b00bCopy full SHA for cd4b00b
src/main/java/ldbc/snb/datagen/hadoop/HadoopKnowsGenerator.java
@@ -37,7 +37,7 @@ protected void setup(Context context) {
37
//this.knowsGenerator = new DistanceKnowsGenerator();
38
this.conf = context.getConfiguration();
39
try {
40
- this.knowsGenerator = (KnowsGenerator) Class.forName(conf.get("knowsGeneratorName")).newInstance();
+ this.knowsGenerator = (KnowsGenerator) Class.forName(conf.get("ldbc.snb.datagen.generator.knowsGenerator")).newInstance();
41
this.knowsGenerator.initialize(conf);
42
}catch(Exception e) {
43
System.out.println(e.getMessage());
0 commit comments