summaryrefslogtreecommitdiff
path: root/yaksh
diff options
context:
space:
mode:
authormaheshgudi2018-07-13 15:48:45 +0530
committermaheshgudi2018-07-13 15:50:54 +0530
commitf3ed3db3f707e358694eee837cde6e7dd8edb241 (patch)
tree8b404b4b3e261b2e2579b344a166ca56633e68a9 /yaksh
parent17bb4bf5a28c4d7a93eefac1ba5d7c2be63ed25f (diff)
downloadonline_test-f3ed3db3f707e358694eee837cde6e7dd8edb241.tar.gz
online_test-f3ed3db3f707e358694eee837cde6e7dd8edb241.tar.bz2
online_test-f3ed3db3f707e358694eee837cde6e7dd8edb241.zip
Modify demo questions to make them simpler
- Update default timeout to 6 seconds for Java related code
Diffstat (limited to 'yaksh')
-rw-r--r--yaksh/fixtures/demo_questions.zipbin3230 -> 9957 bytes
-rw-r--r--yaksh/settings.py2
2 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/fixtures/demo_questions.zip b/yaksh/fixtures/demo_questions.zip
index 1618341..6b0f852 100644
--- a/yaksh/fixtures/demo_questions.zip
+++ b/yaksh/fixtures/demo_questions.zip
Binary files differ
diff --git a/yaksh/settings.py b/yaksh/settings.py
index 9e9597d..f687d51 100644
--- a/yaksh/settings.py
+++ b/yaksh/settings.py
@@ -16,7 +16,7 @@ SERVER_POOL_PORT = config('SERVER_POOL_PORT', default=55555, cast=int)
SERVER_HOST_NAME = config('SERVER_HOST_NAME', default='http://localhost')
# Timeout for the code to run in seconds. This is an integer!
-SERVER_TIMEOUT = config('SERVER_TIMEOUT', default=4, cast=int)
+SERVER_TIMEOUT = config('SERVER_TIMEOUT', default=6, cast=int)
# The root of the URL, for example you might be in the situation where you
# are not hosted as host.org/exam/ but as host.org/foo/exam/ for whatever