Skip to content

Commit

Permalink
fix for failing put listener tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cwensel committed Oct 5, 2023
1 parent febf36a commit 86746ef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class TransformProps implements Struct {
@JsonProperty(required = true)
protected Dataset dataset;
protected String eventBusName;
protected PathFilter filter;
protected PathFilter filter = new PathFilter();

public String lotUnit() {
return lotUnit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static final class Builder {
protected ManifestURI manifestPartialPath;
protected Dataset dataset;
protected String eventBusName;
protected PathFilter filter;
protected PathFilter filter = new PathFilter();
protected String sqsQueueName;
protected int sqsWaitTimeSeconds = 0;

Expand Down Expand Up @@ -104,14 +104,14 @@ public Builder withSqsWaitTimeSeconds(int sqsWaitTimeSeconds) {

public FrequentS3PutTransformProps build() {
FrequentS3PutTransformProps frequentS3PutTransformProps = new FrequentS3PutTransformProps();
frequentS3PutTransformProps.filter = this.filter;
frequentS3PutTransformProps.dataset = this.dataset;
frequentS3PutTransformProps.lotUnit = this.lotUnit;
frequentS3PutTransformProps.manifestCompletePath = this.manifestCompletePath;
frequentS3PutTransformProps.manifestPartialPath = this.manifestPartialPath;
frequentS3PutTransformProps.lotUnit = this.lotUnit;
frequentS3PutTransformProps.sqsQueueName = this.sqsQueueName;
frequentS3PutTransformProps.sqsWaitTimeSeconds = this.sqsWaitTimeSeconds;
frequentS3PutTransformProps.manifestPartialPath = this.manifestPartialPath;
frequentS3PutTransformProps.eventBusName = this.eventBusName;
frequentS3PutTransformProps.dataset = this.dataset;
frequentS3PutTransformProps.filter = this.filter;
return frequentS3PutTransformProps;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static final class Builder {
protected ManifestURI manifestPartialPath;
protected Dataset dataset;
protected String eventBusName;
protected PathFilter filter;
protected PathFilter filter = new PathFilter();
LotSource lotSource;
String keyRegex;

Expand Down Expand Up @@ -111,14 +111,14 @@ public Builder withKeyRegex(String keyRegex) {

public S3PutTransformProps build() {
S3PutTransformProps s3PutTransformProps = new S3PutTransformProps();
s3PutTransformProps.filter = this.filter;
s3PutTransformProps.lotSource = this.lotSource;
s3PutTransformProps.dataset = this.dataset;
s3PutTransformProps.manifestCompletePath = this.manifestCompletePath;
s3PutTransformProps.keyRegex = this.keyRegex;
s3PutTransformProps.lotUnit = this.lotUnit;
s3PutTransformProps.manifestCompletePath = this.manifestCompletePath;
s3PutTransformProps.manifestPartialPath = this.manifestPartialPath;
s3PutTransformProps.eventBusName = this.eventBusName;
s3PutTransformProps.dataset = this.dataset;
s3PutTransformProps.filter = this.filter;
return s3PutTransformProps;
}
}
Expand Down

0 comments on commit 86746ef

Please sign in to comment.