Skip to content

Commit

Permalink
fix(swingset): force vattp to run on worker=local for now
Browse files Browse the repository at this point in the history
We're seeing something weird, where vattp is dropping messages randomly,
which could cause a consensus failure. So we're going to pin it to a local
worker for now, instead of letting it run on XS.

refs #3039
  • Loading branch information
warner authored and michaelfig committed May 5, 2021
1 parent a1a2693 commit a6aff0a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/SwingSet/src/initializeSwingset.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,11 @@ export async function initializeSwingset(
// it to comms
config.vats.vattp = {
bundle: kernelBundles.vattp,
creationOptions: {
// we saw evidence of vattp dropping messages, and out of caution,
// we're keeping it on an in-kernel worker for now. See #3039.
managerType: 'local',
},
};

// timer wrapper vat is added automatically, but TODO: bootstraps must
Expand Down

0 comments on commit a6aff0a

Please sign in to comment.