You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Noticed a problem with the DatamanagerFacility.createDataset method. If you call it passing in a project to attach the dataset to, you have to reload the project before calling it again with another dataset, otherwise the previous dataset will be detached from the project again.
Where as by adding proj1 = browseFacility.getProjects(rootCtx, Collections.singleton(proj1.getId())).iterator().next(); after the first dataset is created it will pass.
The text was updated successfully, but these errors were encountered:
Noticed a problem with the
DatamanagerFacility.createDataset
method. If you call it passing in a project to attach the dataset to, you have to reload the project before calling it again with another dataset, otherwise the previous dataset will be detached from the project again.This integration test will fail:
Where as by adding
proj1 = browseFacility.getProjects(rootCtx, Collections.singleton(proj1.getId())).iterator().next();
after the first dataset is created it will pass.The text was updated successfully, but these errors were encountered: