diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-12 10:46:48 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 10:46:48 +1000 |
commit | 8476bbff9af28408bc6a9b0a7b2303cb3803422e (patch) | |
tree | 7d06c3fb248c39b5924686213275b57df8d01fc7 /cli/main.rs | |
parent | 3a3837545ce6f585f718069cc05d96f765a05d3f (diff) |
feat: stabilize `Deno.createHttpClient()` (#25569)
Closes #25518
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/cli/main.rs b/cli/main.rs index 6caeaa5dd..ca233d43c 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -364,13 +364,6 @@ fn get_suggestions_for_terminal_errors(e: &JsError) -> Vec<FixSuggestion> { "Run again with `--unstable-cron` flag to enable this API.", ), ]; - } else if msg.contains("createHttpClient is not a function") { - return vec![ - FixSuggestion::info("Deno.createHttpClient() is an unstable API."), - FixSuggestion::hint( - "Run again with `--unstable-http` flag to enable this API.", - ), - ]; } else if msg.contains("WebSocketStream is not defined") { return vec![ FixSuggestion::info("new WebSocketStream() is an unstable API."), |