Skip to content

Commit

Permalink
Fix: Support 512M file proxy upload (#2576)
Browse files Browse the repository at this point in the history
* Fix: Support 512M file proxy upload
  • Loading branch information
leo-songye-li authored Jan 16, 2025
1 parent 56d110c commit 85226cb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "snapmaker-luban",
"version": "4.15.0",
"version": "4.15.1",
"description": "A web-based interface for Snapmaker 3-in-1 3D Printer",
"homepage": "https://github.com/Snapmaker/Luban",
"author": "Snapmaker Software Team",
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "snapmaker-luban",
"version": "4.15.0",
"version": "4.15.1",
"description": "Snapmaker 3-in-1 Software for 3D Printing, Laser Engraving and CNC Cutting.",
"homepage": "https://github.com/Snapmaker/Luban",
"author": "Snapmaker Software Team",
Expand Down
2 changes: 1 addition & 1 deletion src/server/services/machine/adaptor/Octo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { HEAD_PRINTING } from '../../../constants';

const log = logger('service:machine:adapter:Octo');

const maxMemory = 64 * 1024 * 1024; // 64MB
const maxMemory = 512 * 1024 * 1024; // 512MB
interface ConnectionCloseOptions {
port?: number;
}
Expand Down

0 comments on commit 85226cb

Please sign in to comment.