Skip to content

Commit 85226cb

Browse files
Fix: Support 512M file proxy upload (#2576)
* Fix: Support 512M file proxy upload
1 parent 56d110c commit 85226cb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "snapmaker-luban",
3-
"version": "4.15.0",
3+
"version": "4.15.1",
44
"description": "A web-based interface for Snapmaker 3-in-1 3D Printer",
55
"homepage": "https://github.com/Snapmaker/Luban",
66
"author": "Snapmaker Software Team",

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "snapmaker-luban",
3-
"version": "4.15.0",
3+
"version": "4.15.1",
44
"description": "Snapmaker 3-in-1 Software for 3D Printing, Laser Engraving and CNC Cutting.",
55
"homepage": "https://github.com/Snapmaker/Luban",
66
"author": "Snapmaker Software Team",

src/server/services/machine/adaptor/Octo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { HEAD_PRINTING } from '../../../constants';
99

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

12-
const maxMemory = 64 * 1024 * 1024; // 64MB
12+
const maxMemory = 512 * 1024 * 1024; // 512MB
1313
interface ConnectionCloseOptions {
1414
port?: number;
1515
}

0 commit comments

Comments
 (0)