mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
da3553d800
* Set `node-fetch` to `^2.7.0` * Update package-lock.json ``` # root bin/npm update node-fetch bin/npm update cross-fetch # in other path in docker npm update node-fetch ``` * Update node-fetch patch * [fetch-utils] Skip the test: destroys the request body if it doesn't get consumed ``` 1) fetch-utils fetchJson destroys the request body if it doesn't get consumed: FetchError: Invalid response body while trying to fetch http://example.com:30001/json/ignore-request: write EPIPE at PassThrough.<anonymous> (/overleaf/node_modules/node-fetch/lib/index.js:400:12) at PassThrough.emit (node:events:529:35) at emitErrorNT (node:internal/streams/destroy:151:8) at emitErrorCloseNT (node:internal/streams/destroy:116:3) at process.processTicksAndRejections (node:internal/process/task_queues:82:21) ``` * [fetch-utils] Delete the test: destroys the request body if it doesn't get consumed * Remove the `setTimeout` in the node-fetch patch Fixes a test and doesn't break filestore acceptance tests * Update node-fetch patch again: bring changes from https://github.com/node-fetch/node-fetch/blob/e87b093/src/index.js * Update node-fetch patch again: bring changes from https://github.com/node-fetch/node-fetch/blob/e87b093/src/index.js * Update node-fetch patches back to single lines Per https://github.com/overleaf/internal/pull/20165#discussion_r1739035513 GitOrigin-RevId: 945e5a12e838673b7bc87b588b7aca1bcd9109e2 |
||
---|---|---|
.. | ||
app/js | ||
config | ||
firejail | ||
template_files | ||
test | ||
uploads | ||
user_files | ||
.gitignore | ||
.mocharc.json | ||
.nvmrc | ||
.prettierignore | ||
app.js | ||
buildscript.txt | ||
docker-compose.ci.yml | ||
docker-compose.yml | ||
Dockerfile | ||
install_deps.sh | ||
LICENSE | ||
Makefile | ||
package.json | ||
README.md | ||
tiny.pdf | ||
tsconfig.json |
overleaf/filestore
An API for CRUD operations on binary files stored in S3
filestore acts as a proxy between the CLSIs and (currently) Amazon S3 storage, presenting a RESTful HTTP interface to the CLSIs on port 3009 by default. Urls are mapped to node functions in https://github.com/overleaf/filestore/blob/master/app.coffee . URLs are of the form:
/project/:project_id/file/:file_id
/template/:template_id/v/:version/:format
/project/:project_id/public/:public_file_id
/project/:project_id/size
/bucket/:bucket/key/*
/shutdown
/status
- returns HTTP 200filestore is up
or HTTP 503 when shutting down/health_check
License
The code in this repository is released under the GNU AFFERO GENERAL PUBLIC LICENSE, version 3. A copy can be found in the LICENSE
file.
Copyright (c) Overleaf, 2014-2019.