storagecells not updated in rx and allowing it in idle mode (#485)

This commit is contained in:
Dhanya Thattil
2022-06-09 13:42:18 +02:00
committed by GitHub
parent 8ca8185d41
commit 5490daa0a1
3 changed files with 5 additions and 1 deletions

View File

@ -581,7 +581,7 @@ int ClientInterface::set_num_add_storage_cells(Interface &socket) {
throw RuntimeError("Invalid number of additional storage cells " +
std::to_string(value));
}
verifyIdle(socket);
// allowing this to be done even when receiver not idle
LOG(logDEBUG1) << "Setting num additional storage cells to " << value;
impl()->setNumberOfAdditionalStorageCells(value);
return socket.Send(OK);