Skip to content

Commit 425a6b6

Browse files
fix: set correct seconds for max_cell_timeout
1 parent 32d34f5 commit 425a6b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grader_service/autograding/local_grader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class LocalAutogradeExecutor(LoggingConfigurable):
5555

5656
min_cell_timeout = Int(10, help="Min cell timeout in seconds, defaults to 10.").tag(config=True)
5757

58-
max_cell_timeout = Int(84600, help="Max cell timeout in seconds, defaults to 86400").tag(
58+
max_cell_timeout = Int(86400, help="Max cell timeout in seconds, defaults to 86400").tag(
5959
config=True
6060
)
6161

0 commit comments

Comments
 (0)