File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,6 @@ async function usesOlderWasiHTTP(witPath, worldName) {
3131 const exportsOldIncomingHandler = worldMetadata . exports . some ( ( iface ) => {
3232 return (
3333 iface . namespace === "wasi" &&
34- iface . package === "http" &&
35- iface . interface === "incoming-handler" &&
3634 iface . version !== null &&
3735 iface . version . major === 0n &&
3836 iface . version . minor < 3n &&
@@ -43,8 +41,6 @@ async function usesOlderWasiHTTP(witPath, worldName) {
4341 const importsOldFetch = worldMetadata . imports . some ( ( iface ) => {
4442 return (
4543 iface . namespace === "wasi" &&
46- iface . package === "http" &&
47- iface . interface === "outgoing-handler" &&
4844 iface . version !== null &&
4945 iface . version . major === 0n &&
5046 iface . version . minor < 3n &&
You can’t perform that action at this time.
0 commit comments