There was an error while loading. Please reload this page.
1 parent 3c78700 commit 9856ee6Copy full SHA for 9856ee6
1 file changed
activitysim/core/calibration.py
@@ -1436,7 +1436,11 @@ def _run_multiprocess_with_overrides(
1436
1437
state.settings.models = models
1438
state.settings.multiprocess_steps = calibration_mp_steps
1439
- state.settings.resume_after = resume_after
+ # Always None: calibration manages pipeline state externally via
1440
+ # _restore_parent_state_from_pipeline and checkpoint.add, so the MP
1441
+ # system's breadcrumb-based resume logic must not be triggered.
1442
+ # Apportion uses LAST_CHECKPOINT to read from the current pipeline state.
1443
+ state.settings.resume_after = None
1444
1445
try:
1446
injectables = _build_calibration_injectables(state)
0 commit comments