We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fc8b3e commit b62aa13Copy full SHA for b62aa13
app/models/remote_sandbox.rb
@@ -16,7 +16,11 @@ def initialize(baseurl)
16
17
def self.try_to_send_submission_to_free_server(submission, notify_url)
18
servers = if submission.exercise && ExerciseDir.get(submission.exercise.clone_path).safe_for_experimental_sandbox
19
- all_experimental.shuffle + all.shuffle
+ if ExerciseDir.exercise_type == "maven"
20
+ all_experimental.shuffle
21
+ else
22
+ all_experimental.shuffle + all.shuffle
23
+ end
24
else
25
all.shuffle
26
end
0 commit comments