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
{{ message }}
This repository was archived by the owner on Apr 1, 2025. It is now read-only.
* added deprovisioning for S3 and Azure Blob
* fixed overwriting destination containers
* do not allow to transition from ERROR to DEPROVISION_REQ
* deactivated terraform-plan due to problems with the Azure AD SP
Copy file name to clipboardExpand all lines: extensions/transfer/transfer-core/src/main/java/com/microsoft/dagx/transfer/core/CoreTransferExtension.java
Copy file name to clipboardExpand all lines: extensions/transfer/transfer-core/src/main/java/com/microsoft/dagx/transfer/core/provision/ProvisionContextImpl.java
Copy file name to clipboardExpand all lines: extensions/transfer/transfer-core/src/main/java/com/microsoft/dagx/transfer/core/provision/ProvisionManagerImpl.java
Copy file name to clipboardExpand all lines: extensions/transfer/transfer-core/src/main/java/com/microsoft/dagx/transfer/core/transfer/TransferProcessManagerImpl.java
//todo: comment this in if we want to error out uncheckable resources
168
-
// var resourcesWithNoChecker = resources.stream().filter(resource -> statusCheckerRegistry.resolve(resource) == null).collect(Collectors.toList());
169
-
// if (!resourcesWithNoChecker.isEmpty()) {
170
-
// final String violatingResourceClasses = resourcesWithNoChecker.stream().map(r -> r.getClass().getName()).collect(Collectors.joining(", "));
171
-
// monitor.severe("There is no StatusChecker for resource type " + violatingResourceClasses);
172
-
// process.transitionError("No StatusChecker found for a provisioned resource of type(s) " + violatingResourceClasses + ". The violating resource is part of transfer process " + process.getId());
173
-
// transferProcessStore.update(process);
174
-
// continue;
175
-
// }
176
-
177
212
// update the process once ALL resources are completed
178
213
if (resources.stream().allMatch(this::isComplete)) {
179
214
process.transitionCompleted();
180
215
monitor.debug("Process " + process.getId() + " is now " + TransferProcessStates.COMPLETED);
0 commit comments