Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
djuarezgf committed Dec 23, 2024
1 parent 0bb91ea commit f911c91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/samply/exporter/ExporterService.java
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ public Mono<ExporterServiceResult> 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) {
Expand Down

0 comments on commit f911c91

Please sign in to comment.