15 lines
311 B
C++
15 lines
311 B
C++
#include "RefreshStoragePoolsMsgEx.h"
|
|
|
|
#include <program/Program.h>
|
|
|
|
bool RefreshStoragePoolsMsgEx::processIncoming(ResponseContext& ctx)
|
|
{
|
|
Program::getApp()->getInternodeSyncer()->setForceStoragePoolsUpdate();
|
|
|
|
// can only come as an AcknowledgableMsg from mgmtd
|
|
acknowledge(ctx);
|
|
|
|
return true;
|
|
}
|
|
|