I'm not sure if this is a problem for anyone else starting up the autograder, but when I start it, it tries to rerun the submissions in the queue. However, it throws a NullPointerException saying
Cannot invoke "edu.byu.cs.model.User.repoUrl()" because "currentUser" is null
at edu.byu.cs.service.SubmissionService.reRunSubmissionsInQueue(SubmissionService.java:305)
Solving this would be a small null check on the currentUser before calling currentUser.repoUrl() on it.
I'm not sure if this is a problem for anyone else starting up the autograder, but when I start it, it tries to rerun the submissions in the queue. However, it throws a NullPointerException saying
Solving this would be a small null check on the
currentUserbefore callingcurrentUser.repoUrl()on it.