Skip to content

Commit 513f062

Browse files
committed
FIX1/2: CreateNewDataset* uses/shares the same URL (persistKey = "datasetserverurl")
1 parent 47de10f commit 513f062

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/cz/it4i/fiji/legacy/CreateNewDataset.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
@Plugin(type = Command.class, headless = true, menuPath = "Plugins>HPC DataStore>Create>Create new dataset")
2929
public class CreateNewDataset implements Command {
30-
@Parameter(label = "URL of a DatasetsRegisterService:")
30+
@Parameter(label = "URL of a DatasetsRegisterService:", persistKey = "datasetserverurl")
3131
public String url = "someHostname:9080";
3232

3333
@Parameter(label="Dataset label:")

src/main/java/cz/it4i/fiji/legacy/CreateNewDatasetFromJSON.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
@Plugin(type = Command.class, headless = true, menuPath = "Plugins>HPC DataStore>Create>Create new dataset from JSON")
2121
public class CreateNewDatasetFromJSON implements Command {
22-
@Parameter(label = "URL of a DatasetsRegisterService:")
22+
@Parameter(label = "URL of a DatasetsRegisterService:", persistKey = "datasetserverurl")
2323
public String url = "someHostname:9080";
2424

2525
@Parameter(label = "Specification in JSON:", persist = false)

0 commit comments

Comments
 (0)