Skip to content

Commit

Permalink
compilation errors fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
stas-panasiuk committed Oct 24, 2024
1 parent 81a4038 commit acb5448
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
restore-keys: |
${{ runner.os }}-maven-
- name: Check codestyle
run: mvn -B validate --file flink-cyber/pom.xml
run: mvn -B compile -T 1C --file flink-cyber/pom.xml
- name: Build and Test with Maven
run: mvn -P '!add-dependencies-for-IDEA,!full-build,!include-front-end' -B verify --file flink-cyber/pom.xml

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected DataStream<Message> createSource(StreamExecutionEnvironment env, Param

WatermarkStrategy<Message> watermarkStrategy = WatermarkStrategy.<Message>forBoundedOutOfOrderness(
Duration.ofMillis(params.getLong(PARAM_DEDUPE_LATENESS, 0L)))
.thTimestampAssigner(
.withTimestampAssigner(
(event, timestamp) -> event.getTs());
return env.fromSource(createKafkaSource(inputTopic,
params,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public ProfileGroupAcc createAccumulator() {
@Override
protected Map<String, DecimalFormat> getMeasurementFormats() {
return profileGroupConfig.getMeasurements().stream()
.llect(Collectors.toMap(ProfileMeasurementConfig::getResultExtensionName,
.collect(Collectors.toMap(ProfileMeasurementConfig::getResultExtensionName,
ProfileMeasurementConfig::getDecimalFormat));
}
}

0 comments on commit acb5448

Please sign in to comment.