Github user rafaelweingartner commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1994#discussion_r106001103 --- Diff: engine/schema/src/com/cloud/storage/dao/StoragePoolTagsDaoImpl.java --- @@ -77,4 +92,71 @@ public void deleteTags(long poolId) { txn.commit(); } + @Override + public List<StoragePoolTagVO> searchByIds(Long... stIds) { + final int detailsBatchSize = getDetailsBatchSize(); + + // query details by batches + List<StoragePoolTagVO> uvList = new ArrayList<StoragePoolTagVO>(); + int curr_index = 0; + + if (stIds.length > detailsBatchSize) { --- End diff -- I mistyped the lines in my last sentence, it should have been 110-112. Will it be loaded with a bigger batch size? From my reading, even without the `if ` at line 103, if `stIds.length` is smaller than the batch size, the `while` is not executed (not even once). Then, the flow proceeds the same as if the `if` had been executed. Then, at line 111 the `batch_size` is calculated using `stIds.length - curr_index`.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---