Skip to content

Commit

Permalink
fix: Try adding a delay to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gibson042 committed Jun 3, 2022
1 parent 69d8d4f commit 3c7c270
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/vats/src/core/chain-behaviors.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,13 @@ harden(makeBridgeManager);
* }} powers
*/
export const makeChainStorage = async ({
consume: { bridgeManager: bridgeManagerP, loadVat },
consume: {
bridgeManager: bridgeManagerP,
loadVat,
// provisioning is here to attempt delaying execution for avoiding failures like
// https://github.com/Agoric/agoric-sdk/runs/6728088019?check_suite_focus=true
provisioning: _provisioning,
},
produce: { chainStorage: chainStorageP },
}) => {
const bridgeManager = await bridgeManagerP;
Expand Down
3 changes: 3 additions & 0 deletions packages/vats/src/core/manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ const SHARED_CHAIN_BOOTSTRAP_MANIFEST = harden({
consume: {
bridgeManager: true,
loadVat: true,
// provisioning is here to attempt delaying execution for avoiding failures like
// https://github.com/Agoric/agoric-sdk/runs/6728088019?check_suite_focus=true
provisioning: true,
},
produce: {
chainStorage: true,
Expand Down

0 comments on commit 3c7c270

Please sign in to comment.