Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
a11686d
Secondary Storage Management
May 3, 2020
94275d6
Merge branch 'master' of github.com:shapeblue/cloudstack into SecStgMgmt
May 3, 2020
ac50ee6
Code clean up and logging
May 4, 2020
87f9360
Refactored code
May 4, 2020
e4b9cca
Refactored code
May 5, 2020
db6a434
fine tuned scaling condition + allocation algorithm GS
May 6, 2020
ed2fe4e
Code changes and cleanup
May 7, 2020
082c7c7
Refactored code
May 8, 2020
3ba480f
Added check for templates already present on destination + code refac…
May 8, 2020
b173f78
Address review comments + make complete migration default
May 11, 2020
452fe52
Modularized storageOrchestrator class
May 11, 2020
82f6556
Address review comments
May 19, 2020
141635d
updated comment
May 19, 2020
8a2208e
textual change in javadoc
DaanHoogland May 20, 2020
5b4c241
updated comment
May 19, 2020
f64e76f
Merge branch 'SecStgMgmt' of github.com:shapeblue/cloudstack into Sec…
May 20, 2020
cb1e5ba
refined error message
May 29, 2020
ebaaac5
Merge branch 'master' of github.com:shapeblue/cloudstack into SecStgMgmt
May 29, 2020
dfe7c85
Merge branch 'master' of github.com:shapeblue/cloudstack into SecStgMgmt
Jun 11, 2020
d6c1e5d
Merge branch 'master' of github.com:shapeblue/cloudstack into SecStgMgmt
Jun 18, 2020
b70fc1d
Adhere to readonly flag when allzones option selected
Jun 18, 2020
cc3ce75
Added event details
Jun 18, 2020
861c6d5
event logs modified + vmware changes
Jun 22, 2020
4270352
Added check for only image store - more restrictive check
Jun 23, 2020
1515108
Added check for only image store - more restrictive check
Jun 23, 2020
15486b3
Added detailed logs
Jun 24, 2020
427b0fb
Merge branch 'master' of github.com:shapeblue/cloudstack into SecStgMgmt
Jun 26, 2020
8f2b224
handle case for tests
Jun 29, 2020
79d0d8b
template registration failure marvin
Jun 29, 2020
3ef207a
Fixed marvin failures
Jun 30, 2020
8bce77c
Add fsm check
Jun 30, 2020
357f924
regression checks
Jul 1, 2020
4df6373
Added new tests related to new functionalities introduced with FR76
vladimirpetrov Jul 10, 2020
276eaa9
Added new tests related to new functionalities introduced with FR76
vladimirpetrov Jul 10, 2020
a68acb7
Removed one case for balanced migration giving different results in T…
vladimirpetrov Jul 13, 2020
d5405ce
Merge branch 'SecStgMgmt' of github.com:shapeblue/cloudstack into Sec…
Jul 24, 2020
f5b2ccc
Merge branch 'master' of github.com:shapeblue/cloudstack into SecStgMgmt
Jul 24, 2020
c5c0dd6
Merge branch 'master' of https://github.com/apache/cloudstack into Se…
Jul 24, 2020
526a6d2
Change global setting value
Jul 24, 2020
5930752
Merge branch 'master' of https://github.com/apache/cloudstack into Se…
Aug 1, 2020
78a5667
Update PremiumSecondaryStorageManagerImpl.java
Pearl1594 Aug 11, 2020
67b41ec
code refactor
Aug 12, 2020
32ffa81
Merge branch 'master' of https://github.com/apache/cloudstack into Se…
Aug 13, 2020
490c235
minor fix
Aug 16, 2020
5f18a71
Merge branch 'master' of https://github.com/apache/cloudstack into Se…
Aug 16, 2020
f071131
fixes
Aug 17, 2020
26e058b
Check for transitions
Aug 19, 2020
6fa4735
Merge branch 'master' of https://github.com/apache/cloudstack into Se…
Aug 28, 2020
4862cbc
Added guarding against stores other than NFS
Sep 7, 2020
51934ae
Merge branch 'master' of https://github.com/apache/cloudstack into Se…
Sep 7, 2020
4675068
Update ImageStoreServiceImpl.java
Pearl1594 Sep 9, 2020
eed05f9
Null check
Sep 12, 2020
e99548f
Merge branch 'master' of https://github.com/apache/cloudstack into Se…
Sep 12, 2020
40d1818
Merge branch 'master' of https://github.com/apache/cloudstack into Se…
Sep 16, 2020
716e77a
Correct sql query to get all active commands on ssvms
Sep 16, 2020
8a85524
Removed junk file
Sep 16, 2020
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
Prev Previous commit
Next Next commit
Null check
  • Loading branch information
Pearl Dsilva committed Sep 12, 2020
commit eed05f97d7e8181430566702d625885dc7b81b93
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ public void copyAsync(DataObject srcdata, DataObject destData, AsyncCompletionCa

// Select host endpoint such that the load is balanced out
List<EndPoint> eps = _epSelector.findAllEndpointsForScope(srcdata.getDataStore());
if (eps.isEmpty()) {
if (eps == null || eps.isEmpty()) {
String errMsg = "No remote endpoint to send command, check if host or ssvm is down?";
s_logger.error(errMsg);
answer = new Answer(cmd, false, errMsg);
Expand Down