Skip to content

Commit 94b4b21

Browse files
authored
fix store
1 parent b731c16 commit 94b4b21

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/multiple_pxe.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ const store2 = await createStore('pxe2', {
2525
});
2626

2727
const setupPxe1 = async () => {
28-
const pxe = await createPXEService(node, fullConfig, true, store1);
28+
const pxe = await createPXEService(node, fullConfig, {store: store1});
2929
await waitForPXE(pxe);
3030
return pxe;
3131
};
3232

3333
const setupPxe2 = async () => {
34-
const pxe = await createPXEService(node, fullConfig, true, store2);
34+
const pxe = await createPXEService(node, fullConfig, {store: store2});
3535
await waitForPXE(pxe);
3636
return pxe;
3737
};

0 commit comments

Comments
 (0)