Skip to content

Commit

Permalink
[hotfix] Fix failing e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tenthe committed Dec 6, 2022
1 parent 338cd0b commit 647ae8f
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ public SpServiceDefinition provideServiceDefinition() {
new SetEpsgController(),
new LatLngToGeoController(),
new CreateTrajectoryFromPointsController(),

new SpeedCalculatorController(),

new StaticDistanceCalculatorController())
.registerMessagingFormats(
new JsonDataFormatFactory(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class LatLngToGeoController extends StandaloneEventProcessingDeclarer<Lat
@Override
public DataProcessorDescription declareModel() {
return ProcessingElementBuilder
.create("latlngtogeo")
.create("org.apache.streampipes.processors.geo.jvm.jts.processor.latlngtogeo")
.category(DataProcessorType.GEO)
.withAssets(Assets.DOCUMENTATION, Assets.ICON)
.withLocales(Locales.EN)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class SetEpsgController extends StandaloneEventProcessingDeclarer<SetEpsg
@Override
public DataProcessorDescription declareModel() {
return ProcessingElementBuilder
.create("setepsg")
.create("org.apache.streampipes.processors.geo.jvm.jts.processor.setepsg")
.category(DataProcessorType.GEO)
.withAssets(Assets.DOCUMENTATION, Assets.ICON)
.withLocales(Locales.EN)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,11 @@ public class SpeedCalculatorController extends StandaloneEventProcessingDeclarer
private static final String TIMESTAMP_KEY = "timestamp-key";
private static final String LATITUDE_KEY = "latitude-key";
private static final String LONGITUDE_KEY = "longitude-key";
private static final String SPEED_KEY = "speed-key";
private static final String COUNT_WINDOW_KEY = "count-window-key";

@Override
public DataProcessorDescription declareModel() {
return ProcessingElementBuilder.create("org.apache.streampipes.processors.geo.jvm.processo.speed")
return ProcessingElementBuilder.create("org.apache.streampipes.processors.geo.jvm.processor.speed")
.category(DataProcessorType.GEO)
.withAssets(Assets.DOCUMENTATION, Assets.ICON)
.withLocales(Locales.EN)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ longitude-key.title=Longitude field
longitude-key.description=Used to calculate the distance between events

count-window-key.title=Count window
count-window-key.description=Describes the number of stored events, used for the calculation
count-window-key.description=Describes the number of stored events, used for the calculation

0 comments on commit 647ae8f

Please sign in to comment.