Skip to content

Commit

Permalink
Cleanup: Remove builtin-wasm-modules from autogates passed to workerd (
Browse files Browse the repository at this point in the history
…#5823)

* Remove builtin-wasm-modules from autogates passed to workerd

The builtin-wasm-modules autogate is no longer required.

* remove autogates empty array, undefined is permitted by the types

---------

Co-authored-by: Rahul Sethi <5822355+RamIdeas@users.noreply.github.com>
  • Loading branch information
dom96 and RamIdeas authored Jun 6, 2024
1 parent 8741b7f commit cd8e8ae
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/miniflare/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1281,13 +1281,7 @@ export class Miniflare {
);
}

const autogates = [
// Enables Python support in workerd.
// TODO(later): remove this once this gate is removed from workerd.
"workerd-autogate-builtin-wasm-modules",
];

return { services: servicesArray, sockets, extensions, autogates };
return { services: servicesArray, sockets, extensions };
}

async #assembleAndUpdateConfig() {
Expand Down

0 comments on commit cd8e8ae

Please sign in to comment.