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

Commit d6b13c8

Browse files
authored
playbot -- reduce maximum output size to 3000
1 parent c5e8879 commit d6b13c8

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)