We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70d3d4a commit 38396edCopy full SHA for 38396ed
.changeset/lovely-hairs-post.md
@@ -0,0 +1,5 @@
1
+---
2
+"wrangler": patch
3
4
+
5
+Removed warning when deploying a Python worker
packages/wrangler/src/deployment-bundle/guess-worker-format.ts
@@ -20,12 +20,6 @@ export async function guessWorkerFormat(
20
): Promise<{ format: CfScriptFormat; exports: string[] }> {
21
const parsedEntryPath = path.parse(entryFile);
22
if (parsedEntryPath.ext == ".py") {
23
- logger.warn(
24
- `The entrypoint ${path.relative(
25
- process.cwd(),
26
- entryFile
27
- )} defines a Python worker, support for Python workers is currently experimental.`
28
- );
29
return { format: "modules", exports: [] };
30
}
31
0 commit comments