mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-01-11 08:22:04 -06:00
Provide additional instructions when driver adapter is missing (#2083)
* Provide additional instructions when driver adapter is missing * Include instructions on the command line option output
This commit is contained in:
parent
02791ec8aa
commit
1330223232
@ -284,6 +284,9 @@ public class NBCLI implements Function<String[], Integer>, NBLabeledElement {
|
|||||||
}
|
}
|
||||||
if (options.wantsActivityTypes()) {
|
if (options.wantsActivityTypes()) {
|
||||||
new ActivityTypeLoader().getAllSelectors().forEach(System.out::println);
|
new ActivityTypeLoader().getAllSelectors().forEach(System.out::println);
|
||||||
|
System.out.println("\nIf the driver adapter needed is missing from this list, rebuild NB5 to include the driver adapter.\n"+
|
||||||
|
"Change '<activeByDefault>false</activeByDefault>' for the driver in "+
|
||||||
|
"'./nb-adapters/pom.xml' and './nb-adapters/nb-adapters-included/pom.xml' first.");
|
||||||
return NBCLI.EXIT_OK;
|
return NBCLI.EXIT_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,7 +85,10 @@ public class StandardActivity<R extends java.util.function.LongFunction, S> exte
|
|||||||
.map(l -> l.load(this, NBLabels.forKV()));
|
.map(l -> l.load(this, NBLabels.forKV()));
|
||||||
|
|
||||||
if (defaultDriverName.isPresent() && defaultAdapter.isEmpty()) {
|
if (defaultDriverName.isPresent() && defaultAdapter.isEmpty()) {
|
||||||
throw new BasicError("Unable to load default driver adapter '" + defaultDriverName.get() + '\'');
|
throw new BasicError("Unable to load '" + defaultDriverName.get() + "' driver adapter.\n"+
|
||||||
|
"Rebuild NB5 to include this driver adapter. "+
|
||||||
|
"Change '<activeByDefault>false</activeByDefault>' for the driver in "+
|
||||||
|
"'./nb-adapters/pom.xml' and './nb-adapters/nb-adapters-included/pom.xml' first.");
|
||||||
}
|
}
|
||||||
|
|
||||||
// HERE, op templates are loaded before drivers are loaded
|
// HERE, op templates are loaded before drivers are loaded
|
||||||
|
Loading…
Reference in New Issue
Block a user