Postgres version #1

Merged
c4181 merged 17 commits from postgres-version into main 2025-11-19 17:38:10 +00:00
Showing only changes of commit 6ea9f2fff5 - Show all commits

View file

@ -69,7 +69,7 @@ public class CamelConfiguration extends RouteBuilder {
.process(exchange -> { .process(exchange -> {
JsoCall jsoCall = exchange.getIn().getBody(JsoCall.class); JsoCall jsoCall = exchange.getIn().getBody(JsoCall.class);
if (Point2D.distance(jsoCall.getPoint().getLat(), jsoCall.getPoint().getLng(), appProperties.myLat(), appProperties.myLong()) if (Point2D.distance(jsoCall.getPoint().getLat(), jsoCall.getPoint().getLng(), appProperties.myLat(), appProperties.myLong())
>= appProperties.telegramNotificationThreshold()) { <= appProperties.telegramNotificationThreshold()) {
exchange.setRouteStop(true); exchange.setRouteStop(true);
} }
}) })