Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sixpluszero committed Dec 24, 2024
1 parent b4a4d8c commit 53101fc
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1750,8 +1750,7 @@ public void testUpdateStore() {
when(zkClient.readData(zkMetadataNodePath, null)).thenReturn(null)
.thenReturn(AdminTopicMetadataAccessor.generateMetadataMap(1, -1, 1));

UpdateStoreQueryParams storeQueryParams1 =
new UpdateStoreQueryParams().setIncrementalPushEnabled(true).setBlobTransferEnabled(true);
UpdateStoreQueryParams storeQueryParams1 = new UpdateStoreQueryParams().setBlobTransferEnabled(true);
parentAdmin.initStorageCluster(clusterName);
parentAdmin.updateStore(clusterName, storeName, storeQueryParams1);

Expand All @@ -1771,7 +1770,6 @@ public void testUpdateStore() {
assertEquals(adminMessage.operationType, AdminMessageType.UPDATE_STORE.getValue());

UpdateStore updateStore = (UpdateStore) adminMessage.payloadUnion;
assertEquals(updateStore.incrementalPushEnabled, true);
Assert.assertTrue(updateStore.blobTransferEnabled);

long readQuota = 100L;
Expand Down

0 comments on commit 53101fc

Please sign in to comment.