Skip to content

Commit a0c9f01

Browse files
authored
Merge pull request #93691 from Raunow/patch-1
Rust FaaS example always returns 404 when deployed. create-first-function-vs-code-other.md
2 parents 3bd8290 + 5ffab1c commit a0c9f01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/create-first-function-vs-code-other.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ The *function.json* file in the *HttpExample* folder declares an HTTP trigger fu
167167
Err(_) => 3000,
168168
};
169169
170-
warp::serve(example1).run((Ipv4Addr::UNSPECIFIED, port)).await
170+
warp::serve(example1).run((Ipv4Addr::LOCALHOST, port)).await
171171
}
172172
```
173173

0 commit comments

Comments
 (0)