Merge pull request #2678 from joakim-hove/fix-sequential

Add actionState argument also for non MPI branch
This commit is contained in:
Atgeirr Flø Rasmussen 2020-06-19 06:54:16 +02:00 committed by GitHub
commit 678756b9e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -851,7 +851,7 @@ RestartValue loadParallelRestart(const EclipseIO* eclIO, Action::State& actionSt
return restartValues;
#else
(void) comm;
return eclIO->loadRestart(summaryState, solutionKeys, extraKeys);
return eclIO->loadRestart(actionState, summaryState, solutionKeys, extraKeys);
#endif
}