Fix type parameter in listBackupServiceJobs API - #13940
Conversation
|
@winterhazel @weizhouapache I do not think this is a huge issue, but since the fix is simple, if there is a chance to add it to the next RC, it could be nice :) |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #13940 +/- ##
============================================
- Coverage 19.65% 19.65% -0.01%
+ Complexity 19803 19801 -2
============================================
Files 6368 6368
Lines 574935 574935
Branches 70358 70358
============================================
- Hits 113026 113011 -15
- Misses 449632 449649 +17
+ Partials 12277 12275 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
| private Pair<List<InternalBackupServiceJobVO>, Integer> listBackupServiceJobsInternal(ListBackupServiceJobsCmd cmd) { | ||
| return internalBackupServiceJobDao.searchAndCountForListApi(cmd.getId(), cmd.getBackupId(), cmd.getHostId(), cmd.getZoneId(), | ||
| InternalBackupServiceJobType.valueOf(cmd.getType()), cmd.getExecuting(), cmd.getScheduled(), cmd.getStartIndex(), cmd.getPageSizeVal()); | ||
| cmd.getType(), cmd.getExecuting(), cmd.getScheduled(), cmd.getStartIndex(), cmd.getPageSizeVal()); |
There was a problem hiding this comment.
note that is we propagate the enum to the parameter we can use the CSoC work by @dheeraj12347 for code completion/ parameter validation. (Last bit yet to be designed and worked on)
@JoaoJandre we can include it in 4.23 RC3 if it is ready for merge before #13821. |
|
@blueorangutan package |
|
@winterhazel a [SL] Jenkins job has been kicked to build packages. It will be bundled with no SystemVM templates. I'll keep you posted as I make progress. |
|
Packaging result [SF]: ✔️ el8 ✔️ el9 ✔️ el10 ✔️ debian ✔️ suse15. SL-JID 18945 |
winterhazel
left a comment
There was a problem hiding this comment.
Ttested and it looks good.
I verified that calling listBackupServiceJobs without providing type would result in a NPE before the changes. With these changes, I am able to list all jobs successfully.
Before
(admin) 🐱 > list backupservicejobs
🙈 Error: (HTTP 530, error code 9999) Name is null
2026-08-21 12:47:45,479 ERROR [c.c.a.ApiServer] (qtp888557915-26:[ctx-6a48f400, ctx-4324be57]) (logid:c148c425) unhandled exception executing api command: [Ljava.lang.String;@634ac398 java.lang.NullPointerException: Name is null
at java.base/java.lang.Enum.valueOf(Enum.java:271)
at org.apache.cloudstack.backup.InternalBackupServiceJobType.valueOf(InternalBackupServiceJobType.java:19)
at com.cloud.api.query.QueryManagerImpl.listBackupServiceJobsInternal(QueryManagerImpl.java:6403)
at com.cloud.api.query.QueryManagerImpl.listBackupServiceJobs(QueryManagerImpl.java:6381)
at org.apache.cloudstack.api.command.user.backup.ListBackupServiceJobsCmd.execute(ListBackupServiceJobsCmd.java:101)
at com.cloud.api.ApiDispatcher.dispatch(ApiDispatcher.java:173)
After
(admin) 🐱 > list backupservicejobs
{
"backupservicejob": [
{
"attempts": 0,
"backupid": "9409c285-7820-487e-a5c5-745bbc50b0a0",
"id": 102,
"scheduleddate": "2026-08-21T12:40:58-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "9409c285-7820-487e-a5c5-745bbc50b0a0",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 101,
"removed": "2026-08-21T12:40:58-0300",
"scheduleddate": "2026-08-21T12:40:34-0300",
"startdate": "2026-08-21T12:40:58-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "3f541391-7511-4666-a7d6-8ab94fd77514",
"id": 100,
"scheduleddate": "2026-08-21T12:38:13-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "3f541391-7511-4666-a7d6-8ab94fd77514",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 99,
"removed": "2026-08-21T12:38:13-0300",
"scheduleddate": "2026-07-25T23:50:12-0300",
"startdate": "2026-08-21T12:37:58-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "caf7c29c-2d77-4a97-8734-d6a41a618f86",
"id": 98,
"scheduleddate": "2026-07-25T23:49:12-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "caf7c29c-2d77-4a97-8734-d6a41a618f86",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 97,
"removed": "2026-07-25T23:49:12-0300",
"scheduleddate": "2026-07-25T23:48:16-0300",
"startdate": "2026-07-25T23:49:11-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "f609a91d-5b7d-457a-b844-d778716a8c91",
"id": 96,
"scheduleddate": "2026-07-25T23:46:23-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "f609a91d-5b7d-457a-b844-d778716a8c91",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 95,
"removed": "2026-07-25T23:46:23-0300",
"scheduleddate": "2026-07-25T23:45:12-0300",
"startdate": "2026-07-25T23:46:11-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "2a3ea605-0dcb-4b7c-bc3c-391b52be3372",
"id": 94,
"scheduleddate": "2026-07-25T23:41:25-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "d6a6e849-e2a2-47ed-af4b-9fce94e05bdb",
"id": 93,
"scheduleddate": "2026-07-24T19:51:38-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "a091a4e0-82ec-4a22-ae6a-08dfbc0fd14e",
"id": 92,
"scheduleddate": "2026-07-24T18:39:16-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "072693fa-1674-413a-8a0e-1fb4288e1f3b",
"id": 91,
"scheduleddate": "2026-07-24T14:40:03-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "45461cc3-2670-4df3-86c2-95e581b75c5c",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 90,
"scheduleddate": "2026-07-24T14:20:44-0300",
"startdate": "2026-08-21T12:43:45-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "9409c285-7820-487e-a5c5-745bbc50b0a0",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 89,
"removed": "2026-08-21T12:40:34-0300",
"scheduleddate": "2026-07-24T14:19:56-0300",
"startdate": "2026-08-21T12:38:57-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "3f541391-7511-4666-a7d6-8ab94fd77514",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 88,
"removed": "2026-07-25T23:50:12-0300",
"scheduleddate": "2026-07-24T14:16:56-0300",
"startdate": "2026-07-25T23:50:11-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "caf7c29c-2d77-4a97-8734-d6a41a618f86",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 87,
"removed": "2026-07-25T23:48:16-0300",
"scheduleddate": "2026-07-24T14:16:13-0300",
"startdate": "2026-07-25T23:47:11-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "f609a91d-5b7d-457a-b844-d778716a8c91",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 86,
"removed": "2026-07-25T23:45:12-0300",
"scheduleddate": "2026-07-24T13:52:11-0300",
"startdate": "2026-07-25T23:45:11-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "e1daa9d6-6268-446b-890a-91490bf7c90a",
"id": 85,
"scheduleddate": "2026-07-26T00:36:38-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "b53b5cab-09ac-4a95-99c1-4929a5ad90c3",
"id": 84,
"scheduleddate": "2026-07-25T13:42:52-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "b53b5cab-09ac-4a95-99c1-4929a5ad90c3",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 83,
"removed": "2026-07-24T13:42:52-0300",
"scheduleddate": "2026-07-24T13:38:36-0300",
"startdate": "2026-07-24T13:39:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "b53b5cab-09ac-4a95-99c1-4929a5ad90c3",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 82,
"removed": "2026-07-24T13:38:36-0300",
"scheduleddate": "2026-07-24T13:38:23-0300",
"startdate": "2026-07-24T13:38:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "b53b5cab-09ac-4a95-99c1-4929a5ad90c3",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 81,
"removed": "2026-07-24T13:38:23-0300",
"scheduleddate": "2026-07-24T13:36:42-0300",
"startdate": "2026-07-24T13:37:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "29a52dfd-9942-4703-a22d-46c09610b02b",
"id": 80,
"scheduleddate": "2026-07-25T11:51:09-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "29a52dfd-9942-4703-a22d-46c09610b02b",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 79,
"removed": "2026-07-24T11:51:09-0300",
"scheduleddate": "2026-07-24T11:45:37-0300",
"startdate": "2026-07-24T11:46:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "29a52dfd-9942-4703-a22d-46c09610b02b",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 78,
"removed": "2026-07-24T11:45:37-0300",
"scheduleddate": "2026-07-24T11:45:14-0300",
"startdate": "2026-07-24T11:45:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "29a52dfd-9942-4703-a22d-46c09610b02b",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 77,
"removed": "2026-07-24T11:45:14-0300",
"scheduleddate": "2026-07-24T11:43:21-0300",
"startdate": "2026-07-24T11:43:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "d559e134-ef7d-4e41-bd29-3cfcf8800ca4",
"id": 76,
"scheduleddate": "2026-07-25T11:34:08-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "3b3c58f9-ff08-4226-b820-d8590261ba3b",
"id": 75,
"scheduleddate": "2026-07-25T11:28:51-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "cc9b09af-c84a-49f4-b4a0-b635d1e9d0b8",
"id": 74,
"scheduleddate": "2026-07-25T11:24:58-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "d559e134-ef7d-4e41-bd29-3cfcf8800ca4",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 73,
"removed": "2026-07-24T11:34:08-0300",
"scheduleddate": "2026-07-24T11:23:08-0300",
"startdate": "2026-07-24T11:29:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "d559e134-ef7d-4e41-bd29-3cfcf8800ca4",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 72,
"removed": "2026-07-24T11:23:08-0300",
"scheduleddate": "2026-07-24T11:21:36-0300",
"startdate": "2026-07-24T11:22:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "7e785cee-3182-490d-b351-79403ed5b643",
"id": 71,
"scheduleddate": "2026-07-25T11:21:28-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "3b3c58f9-ff08-4226-b820-d8590261ba3b",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 70,
"removed": "2026-07-24T11:28:51-0300",
"scheduleddate": "2026-07-24T11:21:20-0300",
"startdate": "2026-07-24T11:25:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "3b3c58f9-ff08-4226-b820-d8590261ba3b",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 69,
"removed": "2026-07-24T11:21:20-0300",
"scheduleddate": "2026-07-24T11:19:36-0300",
"startdate": "2026-07-24T11:20:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "cc9b09af-c84a-49f4-b4a0-b635d1e9d0b8",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 68,
"removed": "2026-07-24T11:24:58-0300",
"scheduleddate": "2026-07-24T11:18:36-0300",
"startdate": "2026-07-24T11:21:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "d559e134-ef7d-4e41-bd29-3cfcf8800ca4",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 67,
"removed": "2026-07-24T11:21:36-0300",
"scheduleddate": "2026-07-24T11:18:13-0300",
"startdate": "2026-07-24T11:21:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "cc9b09af-c84a-49f4-b4a0-b635d1e9d0b8",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 66,
"removed": "2026-07-24T11:18:36-0300",
"scheduleddate": "2026-07-24T11:17:38-0300",
"startdate": "2026-07-24T11:18:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "7e785cee-3182-490d-b351-79403ed5b643",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 65,
"removed": "2026-07-24T11:21:28-0300",
"scheduleddate": "2026-07-24T11:16:37-0300",
"startdate": "2026-07-24T11:17:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "3b3c58f9-ff08-4226-b820-d8590261ba3b",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 64,
"removed": "2026-07-24T11:19:36-0300",
"scheduleddate": "2026-07-24T11:15:52-0300",
"startdate": "2026-07-24T11:19:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "7e785cee-3182-490d-b351-79403ed5b643",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 63,
"removed": "2026-07-24T11:16:37-0300",
"scheduleddate": "2026-07-24T11:15:48-0300",
"startdate": "2026-07-24T11:16:36-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "cc9b09af-c84a-49f4-b4a0-b635d1e9d0b8",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 62,
"removed": "2026-07-24T11:17:38-0300",
"scheduleddate": "2026-07-24T11:14:53-0300",
"startdate": "2026-07-24T11:17:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "7e785cee-3182-490d-b351-79403ed5b643",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 61,
"removed": "2026-07-24T11:15:48-0300",
"scheduleddate": "2026-07-24T11:14:03-0300",
"startdate": "2026-07-24T11:14:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "2094d587-e249-4564-a8bc-dd9834b6fa9e",
"id": 60,
"scheduleddate": "2026-07-25T11:00:10-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "abb7a8c8-f827-4652-bb55-b12555c88e21",
"id": 59,
"scheduleddate": "2026-07-25T10:55:49-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "2094d587-e249-4564-a8bc-dd9834b6fa9e",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 58,
"removed": "2026-07-24T11:00:10-0300",
"scheduleddate": "2026-07-24T10:53:47-0300",
"startdate": "2026-07-24T10:56:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "2094d587-e249-4564-a8bc-dd9834b6fa9e",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 57,
"removed": "2026-07-24T10:53:47-0300",
"scheduleddate": "2026-07-24T10:52:36-0300",
"startdate": "2026-07-24T10:53:36-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "a8fce335-2221-461e-a788-e954959f4e1e",
"id": 56,
"scheduleddate": "2026-07-25T10:52:10-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "2094d587-e249-4564-a8bc-dd9834b6fa9e",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 55,
"removed": "2026-07-24T10:52:36-0300",
"scheduleddate": "2026-07-24T10:52:03-0300",
"startdate": "2026-07-24T10:52:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "abb7a8c8-f827-4652-bb55-b12555c88e21",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 54,
"removed": "2026-07-24T10:55:49-0300",
"scheduleddate": "2026-07-24T10:50:36-0300",
"startdate": "2026-07-24T10:52:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "abb7a8c8-f827-4652-bb55-b12555c88e21",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 53,
"removed": "2026-07-24T10:50:36-0300",
"scheduleddate": "2026-07-24T10:50:06-0300",
"startdate": "2026-07-24T10:50:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "abb7a8c8-f827-4652-bb55-b12555c88e21",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 52,
"removed": "2026-07-24T10:50:06-0300",
"scheduleddate": "2026-07-24T10:48:42-0300",
"startdate": "2026-07-24T10:49:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "a8fce335-2221-461e-a788-e954959f4e1e",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 51,
"removed": "2026-07-24T10:52:10-0300",
"scheduleddate": "2026-07-24T10:46:36-0300",
"startdate": "2026-07-24T10:47:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "a8fce335-2221-461e-a788-e954959f4e1e",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 50,
"removed": "2026-07-24T10:46:36-0300",
"scheduleddate": "2026-07-24T10:46:26-0300",
"startdate": "2026-07-24T10:46:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "a8fce335-2221-461e-a788-e954959f4e1e",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 49,
"removed": "2026-07-24T10:46:26-0300",
"scheduleddate": "2026-07-24T10:43:01-0300",
"startdate": "2026-07-24T10:43:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 0,
"backupid": "a0c95ef9-7691-42a6-a703-e7eb2593da7c",
"id": 48,
"scheduleddate": "2026-07-25T10:23:07-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "64ebe978-fec6-4832-95c3-f07f8cb1f7a7",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 47,
"removed": "2026-08-21T12:43:44-0300",
"scheduleddate": "2026-07-25T10:19:11-0300",
"startdate": "2026-08-21T12:43:44-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "46d36803-2087-461d-8fde-293dbe77349f",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 46,
"removed": "2026-08-21T12:40:58-0300",
"scheduleddate": "2026-07-25T10:13:36-0300",
"startdate": "2026-08-21T12:40:58-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "95e91a3b-a95b-45d6-b790-3e5038c8c3bf",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 45,
"removed": "2026-08-21T12:39:58-0300",
"scheduleddate": "2026-07-25T10:10:33-0300",
"startdate": "2026-08-21T12:39:58-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "974421da-e580-403d-8065-7d21b1076cda",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 44,
"removed": "2026-08-21T12:38:57-0300",
"scheduleddate": "2026-07-25T10:06:53-0300",
"startdate": "2026-08-21T12:38:57-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "132d33ba-fae0-4fa0-9b0e-40f9e3901fc6",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 43,
"removed": "2026-08-21T12:37:58-0300",
"scheduleddate": "2026-07-25T10:02:41-0300",
"startdate": "2026-08-21T12:37:57-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "9e656892-e97b-47b2-93b6-dbf50a1abcaf",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 42,
"removed": "2026-07-25T23:50:11-0300",
"scheduleddate": "2026-07-25T09:58:56-0300",
"startdate": "2026-07-25T23:50:11-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "a0c95ef9-7691-42a6-a703-e7eb2593da7c",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 41,
"removed": "2026-07-24T10:23:07-0300",
"scheduleddate": "2026-07-24T09:58:44-0300",
"startdate": "2026-07-24T10:19:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "a0c95ef9-7691-42a6-a703-e7eb2593da7c",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 40,
"removed": "2026-07-24T09:58:44-0300",
"scheduleddate": "2026-07-24T09:57:49-0300",
"startdate": "2026-07-24T09:58:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "a0c95ef9-7691-42a6-a703-e7eb2593da7c",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 39,
"removed": "2026-07-24T09:57:49-0300",
"scheduleddate": "2026-07-24T09:55:07-0300",
"startdate": "2026-07-24T09:55:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "6ca3eca3-1db3-4c69-9379-4ff57f1fc69c",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 38,
"removed": "2026-07-25T23:49:11-0300",
"scheduleddate": "2026-07-25T09:55:03-0300",
"startdate": "2026-07-25T23:49:11-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "64ebe978-fec6-4832-95c3-f07f8cb1f7a7",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 37,
"removed": "2026-07-24T10:19:11-0300",
"scheduleddate": "2026-07-24T09:53:36-0300",
"startdate": "2026-07-24T10:14:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "64ebe978-fec6-4832-95c3-f07f8cb1f7a7",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 36,
"removed": "2026-07-24T09:53:36-0300",
"scheduleddate": "2026-07-24T09:53:25-0300",
"startdate": "2026-07-24T09:53:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "64ebe978-fec6-4832-95c3-f07f8cb1f7a7",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 35,
"removed": "2026-07-24T09:53:25-0300",
"scheduleddate": "2026-07-24T09:52:23-0300",
"startdate": "2026-07-24T09:52:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "5151c192-e2ad-4783-8abe-4fc44214a4a2",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 34,
"removed": "2026-07-25T23:48:11-0300",
"scheduleddate": "2026-07-25T09:49:45-0300",
"startdate": "2026-07-25T23:48:11-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "95e91a3b-a95b-45d6-b790-3e5038c8c3bf",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 32,
"removed": "2026-07-24T10:10:33-0300",
"scheduleddate": "2026-07-24T09:47:43-0300",
"startdate": "2026-07-24T10:07:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "46d36803-2087-461d-8fde-293dbe77349f",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 33,
"removed": "2026-07-24T10:13:36-0300",
"scheduleddate": "2026-07-24T09:47:43-0300",
"startdate": "2026-07-24T10:10:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "46d36803-2087-461d-8fde-293dbe77349f",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 31,
"removed": "2026-07-24T09:47:43-0300",
"scheduleddate": "2026-07-24T09:46:37-0300",
"startdate": "2026-07-24T09:47:36-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "95e91a3b-a95b-45d6-b790-3e5038c8c3bf",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 30,
"removed": "2026-07-24T09:47:43-0300",
"scheduleddate": "2026-07-24T09:46:37-0300",
"startdate": "2026-07-24T09:47:36-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "974421da-e580-403d-8065-7d21b1076cda",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 29,
"removed": "2026-07-24T10:06:53-0300",
"scheduleddate": "2026-07-24T09:45:55-0300",
"startdate": "2026-07-24T10:03:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "132d33ba-fae0-4fa0-9b0e-40f9e3901fc6",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 28,
"removed": "2026-07-24T10:02:41-0300",
"scheduleddate": "2026-07-24T09:45:53-0300",
"startdate": "2026-07-24T09:59:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "e789d977-539e-4813-83fb-ae2b46533932",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 27,
"removed": "2026-07-25T23:47:11-0300",
"scheduleddate": "2026-07-25T09:44:59-0300",
"startdate": "2026-07-25T23:47:11-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "46d36803-2087-461d-8fde-293dbe77349f",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 26,
"removed": "2026-07-24T09:46:37-0300",
"scheduleddate": "2026-07-24T09:44:42-0300",
"startdate": "2026-07-24T09:46:36-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "132d33ba-fae0-4fa0-9b0e-40f9e3901fc6",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 25,
"removed": "2026-07-24T09:45:53-0300",
"scheduleddate": "2026-07-24T09:44:36-0300",
"startdate": "2026-07-24T09:45:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "974421da-e580-403d-8065-7d21b1076cda",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 24,
"removed": "2026-07-24T09:45:55-0300",
"scheduleddate": "2026-07-24T09:44:36-0300",
"startdate": "2026-07-24T09:45:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "95e91a3b-a95b-45d6-b790-3e5038c8c3bf",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 23,
"removed": "2026-07-24T09:46:37-0300",
"scheduleddate": "2026-07-24T09:44:32-0300",
"startdate": "2026-07-24T09:46:36-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "974421da-e580-403d-8065-7d21b1076cda",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 22,
"removed": "2026-07-24T09:44:36-0300",
"scheduleddate": "2026-07-24T09:44:19-0300",
"startdate": "2026-07-24T09:44:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "132d33ba-fae0-4fa0-9b0e-40f9e3901fc6",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 21,
"removed": "2026-07-24T09:44:36-0300",
"scheduleddate": "2026-07-24T09:44:07-0300",
"startdate": "2026-07-24T09:44:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "9e656892-e97b-47b2-93b6-dbf50a1abcaf",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 20,
"removed": "2026-07-24T09:58:56-0300",
"scheduleddate": "2026-07-24T09:42:36-0300",
"startdate": "2026-07-24T09:55:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "6ca3eca3-1db3-4c69-9379-4ff57f1fc69c",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 19,
"removed": "2026-07-24T09:55:03-0300",
"scheduleddate": "2026-07-24T09:42:36-0300",
"startdate": "2026-07-24T09:50:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "9e656892-e97b-47b2-93b6-dbf50a1abcaf",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 18,
"removed": "2026-07-24T09:42:36-0300",
"scheduleddate": "2026-07-24T09:42:16-0300",
"startdate": "2026-07-24T09:42:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "6ca3eca3-1db3-4c69-9379-4ff57f1fc69c",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 17,
"removed": "2026-07-24T09:42:36-0300",
"scheduleddate": "2026-07-24T09:42:13-0300",
"startdate": "2026-07-24T09:42:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "9e656892-e97b-47b2-93b6-dbf50a1abcaf",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 16,
"removed": "2026-07-24T09:42:16-0300",
"scheduleddate": "2026-07-24T09:41:05-0300",
"startdate": "2026-07-24T09:41:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "6ca3eca3-1db3-4c69-9379-4ff57f1fc69c",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 15,
"removed": "2026-07-24T09:42:13-0300",
"scheduleddate": "2026-07-24T09:41:02-0300",
"startdate": "2026-07-24T09:41:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "6177a423-e39e-4733-ad61-eb90f954b4d1",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 14,
"removed": "2026-07-25T23:46:11-0300",
"scheduleddate": "2026-07-25T09:40:53-0300",
"startdate": "2026-07-25T23:46:11-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "ece0087c-e6e2-4034-b94b-fa2c3c477296",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 13,
"removed": "2026-07-25T23:45:11-0300",
"scheduleddate": "2026-07-25T09:36:55-0300",
"startdate": "2026-07-25T23:45:11-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "5151c192-e2ad-4783-8abe-4fc44214a4a2",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 12,
"removed": "2026-07-24T09:49:45-0300",
"scheduleddate": "2026-07-24T09:35:36-0300",
"startdate": "2026-07-24T09:45:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "5151c192-e2ad-4783-8abe-4fc44214a4a2",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 11,
"removed": "2026-07-24T09:35:36-0300",
"scheduleddate": "2026-07-24T09:34:53-0300",
"startdate": "2026-07-24T09:35:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "e789d977-539e-4813-83fb-ae2b46533932",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 10,
"removed": "2026-07-24T09:44:59-0300",
"scheduleddate": "2026-07-24T09:34:52-0300",
"startdate": "2026-07-24T09:41:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "5151c192-e2ad-4783-8abe-4fc44214a4a2",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 9,
"removed": "2026-07-24T09:34:53-0300",
"scheduleddate": "2026-07-24T09:33:40-0300",
"startdate": "2026-07-24T09:34:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "6177a423-e39e-4733-ad61-eb90f954b4d1",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 8,
"removed": "2026-07-24T09:40:53-0300",
"scheduleddate": "2026-07-24T09:33:37-0300",
"startdate": "2026-07-24T09:37:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "e789d977-539e-4813-83fb-ae2b46533932",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 7,
"removed": "2026-07-24T09:34:52-0300",
"scheduleddate": "2026-07-24T09:33:37-0300",
"startdate": "2026-07-24T09:34:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "e789d977-539e-4813-83fb-ae2b46533932",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 6,
"removed": "2026-07-24T09:33:37-0300",
"scheduleddate": "2026-07-24T09:33:16-0300",
"startdate": "2026-07-24T09:33:35-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "6177a423-e39e-4733-ad61-eb90f954b4d1",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 5,
"removed": "2026-07-24T09:33:37-0300",
"scheduleddate": "2026-07-24T09:33:05-0300",
"startdate": "2026-07-24T09:33:35-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "ece0087c-e6e2-4034-b94b-fa2c3c477296",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 4,
"removed": "2026-07-24T09:36:55-0300",
"scheduleddate": "2026-07-24T09:31:12-0300",
"startdate": "2026-07-24T09:31:35-0300",
"type": "BackupValidation",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "6177a423-e39e-4733-ad61-eb90f954b4d1",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 3,
"removed": "2026-07-24T09:33:05-0300",
"scheduleddate": "2026-07-24T09:30:10-0300",
"startdate": "2026-07-24T09:30:36-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "ece0087c-e6e2-4034-b94b-fa2c3c477296",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 2,
"removed": "2026-07-24T09:31:12-0300",
"scheduleddate": "2026-07-24T09:30:00-0300",
"startdate": "2026-07-24T09:30:36-0300",
"type": "FinalizeCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
},
{
"attempts": 1,
"backupid": "ece0087c-e6e2-4034-b94b-fa2c3c477296",
"hostid": "20b04530-6a39-4805-8d6c-42aba3d0df3f",
"id": 1,
"removed": "2026-07-24T09:30:00-0300",
"scheduleddate": "2026-07-24T09:28:01-0300",
"startdate": "2026-07-24T09:28:36-0300",
"type": "StartCompression",
"zoneid": "5624e7c9-f374-468a-9379-6237fa56ccc7"
}
],
"count": 102
}
|
@blueorangutan test |
|
@weizhouapache a [SL] Trillian-Jenkins test job (ol8 mgmt + kvm-ol8) has been kicked to run smoke tests |
bernardodemarco
left a comment
There was a problem hiding this comment.
code lgtm, but I did not test it
Description
The parameter
typeof the listBackupServiceJobs is not required. However, the current implementation fails with a NPE if thetypeis not informed.Types of changes
Feature/Enhancement Scale or Bug Severity
Feature/Enhancement Scale
Bug Severity
Screenshots (if appropriate):
How Has This Been Tested?
I called the API informing the
typeparameter and it was OK. I then called the API without informing it and it was OK as well.