From f911c914cc70e22a70568fa9d8e848dddbceb722 Mon Sep 17 00:00:00 2001 From: djuarezgf Date: Mon, 23 Dec 2024 19:07:33 +0100 Subject: [PATCH] Bugfix --- src/main/java/de/samply/exporter/ExporterService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/samply/exporter/ExporterService.java b/src/main/java/de/samply/exporter/ExporterService.java index 7b40891..fd94d97 100644 --- a/src/main/java/de/samply/exporter/ExporterService.java +++ b/src/main/java/de/samply/exporter/ExporterService.java @@ -359,7 +359,7 @@ public Mono checkIfQueryIsAlreadySentOrExecuted(ProjectBr }; operationType.ifPresent(type -> createBridgeheadNotification( HttpStatus.OK, null, projectBridgehead, projectBridgehead.getExporterUser(), - type, "Quecking if query is already sent or executed")); + type, "Checking if query is already sent or executed")); return clientResponse.bodyToMono(BeamRequest[].class).filter(focusQueries -> focusQueries != null && focusQueries.length > 0).flatMap(newBeamRequest -> { if (projectBridgehead.getQueryState() == QueryState.EXPORT_RUNNING_2) { if (newBeamRequest[0].getBody() == null) {