Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Jan 31, 2025
1 parent 2e86b29 commit 2a99d75
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,8 @@ public Job createJobInGroup(String owner, String groupName,
int group = selectGroup(conn, owner, groupName);
if (!quotaManager.mayCreateJob(group)) {
// No quota left
throw new IllegalArgumentException("quota exceeded in group " + group);
throw new IllegalArgumentException(
"quota exceeded in group " + group);
}

var m = selectMachine(conn, descriptor, machineName, tags);
Expand Down

0 comments on commit 2a99d75

Please sign in to comment.