Skip to content

Commit

Permalink
fuse: allow up 128MiB JSON Job descriptions (#316)
Browse files Browse the repository at this point in the history
Fixes #311.

It turns out 1MiB was not enough for some tools.
  • Loading branch information
terpstra committed Oct 3, 2019
1 parent a11dc3f commit 26aab29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuse/daemon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#define _XOPEN_SOURCE 700
#endif

#define MAX_JSON (1024*1024)
#define MAX_JSON (128*1024*1024)

#include <fuse.h>
#include <stdio.h>
Expand Down

0 comments on commit 26aab29

Please sign in to comment.