[#1700] engine: Drop unused block execution methods

`BlockExecution` and `ResumeExecution` were used only by unit test.
So drop them and simplify code.

Change-Id: Ib3de324617e8a27fc1f015542ac5e94df5c60a6e
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2025-04-11 17:08:44 +03:00
parent e80632884a
commit fd37cea443
Signed by: dstepanov-yadro
GPG key ID: 237AF1A763293BC0
3 changed files with 10 additions and 102 deletions

View file

@ -33,9 +33,8 @@ type StorageEngine struct {
wg sync.WaitGroup
blockExec struct {
mtx sync.RWMutex
err error
mtx sync.RWMutex
closed bool
}
evacuateLimiter *evacuationLimiter
}