private Saga createSagaBasedOnId(final SagaType sagaType, final Object message) {
Saga sagaToContinue = null;
// saga id is known -> we can create saga directly from know state.
SagaState state = stateStorage.load(sagaType.getSagaId());
if (state != null) {
sagaToContinue = continueSaga(state.getType(), state);
} else {
LOG.warn("No open saga state found. (message type = {}, saga type = {}, saga id = {})",
message.getClass(),
sagaType.getSagaClass(),
sagaType.getSagaId());