Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar committed May 25, 2024
1 parent 6bec1e3 commit 8a3ba0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public void regradeSubmission(

@POST
@Path("/regrade")
@UnitOfWork
@UnitOfWork(transactional = false)
public void regradeSubmissions(
@HeaderParam(AUTHORIZATION) AuthHeader authHeader,
@QueryParam("containerJid") Optional<String> containerJid,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public ContestScoreboardPoller(
}

@Override
@UnitOfWork(readOnly = true)
@UnitOfWork(readOnly = true, transactional = false)
public void run() {
try {
for (Contest contest : contestStore.getRunningContests()) {
Expand Down

0 comments on commit 8a3ba0a

Please sign in to comment.