@@ -55,21 +55,21 @@ class TStorageAction {
5555 return !!Writing;
5656 }
5757
58- void OnExecuteTxAfterAction (NColumnShard::TColumnShard& self, NColumnShard::TBlobManagerDb& dbBlobs, const bool success ) {
58+ void OnExecuteTxAfterAction (NColumnShard::TColumnShard& self, NColumnShard::TBlobManagerDb& dbBlobs, const bool blobsWroteSuccessfully ) {
5959 if (Removing) {
60- Removing->OnExecuteTxAfterRemoving (self, dbBlobs, success );
60+ Removing->OnExecuteTxAfterRemoving (self, dbBlobs, blobsWroteSuccessfully );
6161 }
6262 if (Writing) {
63- Writing->OnExecuteTxAfterWrite (self, dbBlobs, success );
63+ Writing->OnExecuteTxAfterWrite (self, dbBlobs, blobsWroteSuccessfully );
6464 }
6565 }
6666
67- void OnCompleteTxAfterAction (NColumnShard::TColumnShard& self, const bool success ) {
67+ void OnCompleteTxAfterAction (NColumnShard::TColumnShard& self, const bool blobsWroteSuccessfully ) {
6868 if (Removing) {
69- Removing->OnCompleteTxAfterRemoving (self, success );
69+ Removing->OnCompleteTxAfterRemoving (self, blobsWroteSuccessfully );
7070 }
7171 if (Writing) {
72- Writing->OnCompleteTxAfterWrite (self, success );
72+ Writing->OnCompleteTxAfterWrite (self, blobsWroteSuccessfully );
7373 }
7474 }
7575};
@@ -144,15 +144,15 @@ class TBlobsAction {
144144 return false ;
145145 }
146146
147- void OnExecuteTxAfterAction (NColumnShard::TColumnShard& self, NColumnShard::TBlobManagerDb& dbBlobs, const bool success ) {
147+ void OnExecuteTxAfterAction (NColumnShard::TColumnShard& self, NColumnShard::TBlobManagerDb& dbBlobs, const bool blobsWroteSuccessfully ) {
148148 for (auto && i : StorageActions) {
149- i.second .OnExecuteTxAfterAction (self, dbBlobs, success );
149+ i.second .OnExecuteTxAfterAction (self, dbBlobs, blobsWroteSuccessfully );
150150 }
151151 }
152152
153- void OnCompleteTxAfterAction (NColumnShard::TColumnShard& self, const bool success ) {
153+ void OnCompleteTxAfterAction (NColumnShard::TColumnShard& self, const bool blobsWroteSuccessfully ) {
154154 for (auto && i : StorageActions) {
155- i.second .OnCompleteTxAfterAction (self, success );
155+ i.second .OnCompleteTxAfterAction (self, blobsWroteSuccessfully );
156156 }
157157 }
158158
0 commit comments