Skip to content

Commit 338e8e9

Browse files
committed
fix: correct Logger imports and SuperBuilder typo to resolve CI failure
1 parent 189d2f3 commit 338e8e9

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

src/main/java/io/kestra/plugin/azure/eventhubs/Trigger.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import jakarta.validation.constraints.NotNull;
1414
import lombok.*;
1515
import lombok.experimental.SupperBuilder;
16+
import lombok.experimental.SuperBuilder;
1617

1718

1819
import org.slf4j.Logger;

src/main/java/io/kestra/plugin/azure/eventhubs/service/consumer/ConsumerContext.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package io.kestra.plugin.azure.eventhubs.service.consumer;
2+
import org.slf4j.Logger;
23

34
import io.kestra.plugin.azure.eventhubs.service.EventDataObjectConverter;
45

src/main/java/io/kestra/plugin/azure/eventhubs/service/consumer/EventHubConsumerService.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package io.kestra.plugin.azure.eventhubs.service.consumer;
2+
import org.slf4j.Logger;
23

34
import com.azure.messaging.eventhubs.CheckpointStore;
45
import com.azure.messaging.eventhubs.EventData;

src/main/java/io/kestra/plugin/azure/eventhubs/service/producer/EventHubProducerService.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package io.kestra.plugin.azure.eventhubs.service.producer;
2+
import org.slf4j.Logger;
23

34
import com.azure.messaging.eventhubs.EventData;
45
import com.azure.messaging.eventhubs.EventDataBatch;

src/main/java/io/kestra/plugin/azure/storage/adls/Delete.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package io.kestra.plugin.azure.storage.adls;
2+
import org.slf4j.Logger;
23

34
import com.azure.storage.file.datalake.DataLakeFileClient;
45
import io.kestra.core.models.annotations.Example;

src/main/java/io/kestra/plugin/azure/storage/adls/DeleteFiles.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package io.kestra.plugin.azure.storage.adls;
2+
import org.slf4j.Logger;
23

34
import com.azure.storage.file.datalake.DataLakeFileClient;
45
import com.azure.storage.file.datalake.DataLakeFileSystemClient;

src/main/java/io/kestra/plugin/azure/storage/adls/Trigger.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package io.kestra.plugin.azure.storage.adls;
2+
import org.slf4j.Logger;
23

34
import com.azure.storage.file.datalake.DataLakeFileClient;
45
import com.azure.storage.file.datalake.DataLakeServiceClient;

0 commit comments

Comments
 (0)