fix build
This commit is contained in:
parent
77556a914c
commit
46364052c9
1 changed files with 1 additions and 1 deletions
|
@ -316,7 +316,7 @@ public class ExamAPI_V1_Controller {
|
||||||
@RequestParam(name = API.EXAM_API_PING_TIMESTAMP, required = true) final long timestamp,
|
@RequestParam(name = API.EXAM_API_PING_TIMESTAMP, required = true) final long timestamp,
|
||||||
@RequestParam(name = API.EXAM_API_PING_NUMBER, required = false) final int pingNumber) {
|
@RequestParam(name = API.EXAM_API_PING_NUMBER, required = false) final int pingNumber) {
|
||||||
|
|
||||||
return new CompletableFuture<String>().completeAsync(
|
return CompletableFuture.supplyAsync(
|
||||||
() -> this.sebClientConnectionService
|
() -> this.sebClientConnectionService
|
||||||
.notifyPing(connectionToken, timestamp, pingNumber),
|
.notifyPing(connectionToken, timestamp, pingNumber),
|
||||||
this.executor);
|
this.executor);
|
||||||
|
|
Loading…
Reference in a new issue