Skip to content

Commit

Permalink
Updated CHANGELOG.md and fixed typo [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
zonia3000 committed Dec 5, 2024
1 parent 043c157 commit 177dc1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
*Note: Numbers like (\#123) point to closed Pull Requests on the fractal-web repository.*

# Unreleased

* Used form data in tasks collection endpoint (\#669);

# 1.11.2

* Removed usage of `cache_dir` field (\#667);
Expand Down
4 changes: 2 additions & 2 deletions src/routes/proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function createPostProxy(path) {
headers: filterHeaders(request.headers),
body: request.body,
// To avoid error "RequestInit: duplex option is required when sending a body"
// @ts-ignore, not standard, but supported by undici; enable restraming of request
// @ts-ignore, not standard, but supported by undici; enable re-streaming of request
duplex: 'half'
});
} catch (err) {
Expand All @@ -57,7 +57,7 @@ export function createPatchProxy(path) {
credentials: 'include',
headers: filterHeaders(request.headers),
body: request.body,
// @ts-ignore, not standard, but supported by undici; enable restraming of request
// @ts-ignore, not standard, but supported by undici; enable re-streaming of request
duplex: 'half'
});
} catch (err) {
Expand Down

0 comments on commit 177dc1a

Please sign in to comment.