Skip to content
This repository was archived by the owner on Jun 27, 2018. It is now read-only.

Commit 7c66474

Browse files
authored
Merge pull request #278 from cbreeden/patch-1
playbot -- reduce maximum output size to 3000
2 parents c5e8879 + d6b13c8 commit 7c66474

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/playbot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ fn main() {{
136136
};
137137

138138
let out = try!(self.run_code(&code, channel));
139-
if out.len() > 5000 {
139+
if out.len() > 3000 {
140140
return Ok(String::from("output too long, bailing out :("));
141141
}
142142

0 commit comments

Comments
 (0)