Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/linters/codespell.txt
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ erro
erronous
everthing
everytime
excetion
excption
Comment thread
jbampton marked this conversation as resolved.
Outdated
excute
execept
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3105,7 +3105,7 @@ public Volume detachVolumeFromVM(DetachVolumeCmd cmmd) {
} catch (InterruptedException e) {
throw new RuntimeException("Operation is interrupted", e);
} catch (ExecutionException e) {
throw new RuntimeException("Execution excetion", e);
throw new RuntimeException("Execution exception", e);
Comment thread
jbampton marked this conversation as resolved.
Outdated
}

Object jobResult = _jobMgr.unmarshallResultObject(outcome.getJob());
Expand Down Expand Up @@ -3534,7 +3534,7 @@ public Volume migrateVolume(MigrateVolumeCmd cmd) {
} catch (InterruptedException e) {
throw new RuntimeException("Operation is interrupted", e);
} catch (ExecutionException e) {
throw new RuntimeException("Execution excetion", e);
throw new RuntimeException("Execution exception", e);
Comment thread
jbampton marked this conversation as resolved.
Outdated
}

Object jobResult = _jobMgr.unmarshallResultObject(outcome.getJob());
Expand Down Expand Up @@ -3876,7 +3876,7 @@ private Snapshot takeSnapshotInternal(Long volumeId, Long policyId, Long snapsho
} catch (InterruptedException e) {
throw new RuntimeException("Operation is interrupted", e);
} catch (ExecutionException e) {
throw new RuntimeException("Execution excetion", e);
throw new RuntimeException("Execution exception", e);
Comment thread
jbampton marked this conversation as resolved.
Outdated
}

Object jobResult = _jobMgr.unmarshallResultObject(outcome.getJob());
Expand Down Expand Up @@ -4201,7 +4201,7 @@ public String extractVolume(ExtractVolumeCmd cmd) {
} catch (InterruptedException e) {
throw new RuntimeException("Operation is interrupted", e);
} catch (ExecutionException e) {
throw new RuntimeException("Execution excetion", e);
throw new RuntimeException("Execution exception", e);
Comment thread
jbampton marked this conversation as resolved.
Outdated
}

Object jobResult = _jobMgr.unmarshallResultObject(outcome.getJob());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ public VMSnapshot createVMSnapshot(Long vmId, Long vmSnapshotId, Boolean quiesce
} catch (InterruptedException e) {
throw new RuntimeException("Operation is interrupted", e);
} catch (java.util.concurrent.ExecutionException e) {
throw new RuntimeException("Execution excetion", e);
throw new RuntimeException("Execution exception", e);
Comment thread
jbampton marked this conversation as resolved.
Outdated
}

Object jobResult = _jobMgr.unmarshallResultObject(outcome.getJob());
Expand Down Expand Up @@ -649,7 +649,7 @@ public boolean deleteVMSnapshot(Long vmSnapshotId) {
} catch (InterruptedException e) {
throw new RuntimeException("Operation is interrupted", e);
} catch (java.util.concurrent.ExecutionException e) {
throw new RuntimeException("Execution excetion", e);
throw new RuntimeException("Execution exception", e);
Comment thread
jbampton marked this conversation as resolved.
Outdated
}

Object jobResult = _jobMgr.unmarshallResultObject(outcome.getJob());
Expand Down Expand Up @@ -774,7 +774,7 @@ public UserVm revertToSnapshot(Long vmSnapshotId) throws InsufficientCapacityExc
} catch (InterruptedException e) {
throw new RuntimeException("Operation is interrupted", e);
} catch (java.util.concurrent.ExecutionException e) {
throw new RuntimeException("Execution excetion", e);
throw new RuntimeException("Execution exception", e);
Comment thread
jbampton marked this conversation as resolved.
Outdated
}

Object jobResult = _jobMgr.unmarshallResultObject(outcome.getJob());
Expand Down Expand Up @@ -1025,7 +1025,7 @@ public boolean deleteAllVMSnapshots(long vmId, VMSnapshot.Type type) {
} catch (InterruptedException e) {
throw new RuntimeException("Operation is interrupted", e);
} catch (java.util.concurrent.ExecutionException e) {
throw new RuntimeException("Execution excetion", e);
throw new RuntimeException("Execution exception", e);
Comment thread
jbampton marked this conversation as resolved.
Outdated
}

Object jobResult = _jobMgr.unmarshallResultObject(outcome.getJob());
Expand Down
Loading