refactoring and fixing issue on property name

This commit is contained in:
Miriam Baglioni 2023-10-23 11:26:17 +02:00
parent 70b78a40c7
commit 5c5a195e97
3 changed files with 1 additions and 4 deletions

View File

@ -41,7 +41,6 @@ public class Constraint implements Serializable {
this.value = value;
}
@JsonIgnore
public void setSelection(VerbResolver resolver)
throws InvocationTargetException, NoSuchMethodException, InstantiationException,
@ -53,5 +52,4 @@ public class Constraint implements Serializable {
return selection.apply(metadata);
}
}

View File

@ -111,7 +111,7 @@
--num-executors=${sparkExecutorNumber}
--executor-memory=${sparkExecutorMemory}
--executor-cores=${sparkExecutorCores}
--conf spark.executor.memoryOverhead=${memeoryOverhead}
--conf spark.executor.memoryOverhead=${memoryOverhead}
--conf spark.sql.shuffle.partitions=${partitions}
--driver-memory=${sparkDriverMemory}
--conf spark.extraListeners=${spark2ExtraListeners}

View File

@ -1,7 +1,6 @@
package eu.dnetlib.dhp.api;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;