mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
fixed issue with new parameters
This commit is contained in:
parent
3f2a304b83
commit
12d4c8f6d6
@ -33,7 +33,6 @@ import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Optional;
|
||||
import java.util.UUID;
|
||||
|
||||
public class DataApiSpace {
|
||||
private final static Logger logger = LogManager.getLogger(DataApiSpace.class);
|
||||
@ -173,6 +172,14 @@ public class DataApiSpace {
|
||||
.setDescription("The Astra namespace to use")
|
||||
|
||||
)
|
||||
.add(
|
||||
Param.optional("superTokenFile", String.class)
|
||||
.setDescription("optional file to load Astra admin user token from")
|
||||
)
|
||||
.add(
|
||||
Param.optional("superToken", String.class)
|
||||
.setDescription("optional Astra token used to connect as Admin user")
|
||||
)
|
||||
.asReadOnly();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user