Skip to content

Commit ba6225a

Browse files
chore: RetryUtils is now a static utility class
1 parent eba9a73 commit ba6225a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
version=1.1.4-SNAPSHOT
2-
kestraVersion=1.1.0
2+
kestraVersion=1.2.3

src/main/java/io/kestra/plugin/dbt/cloud/AbstractDbtCloud.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ protected <RES> HttpResponse<RES> request(
7878
var rInitialDelay = runContext.render(this.initialDelayMs).as(Long.class).orElse(1000L);
7979

8080
try (var client = new HttpClient(runContext, options)) {
81-
return new RetryUtils().<HttpResponse<RES>, HttpClientException>of(
81+
return RetryUtils.<HttpResponse<RES>, HttpClientException>of(
8282
Exponential.builder()
8383
.delayFactor(2.0)
8484
.interval(Duration.ofMillis(rInitialDelay))

0 commit comments

Comments
 (0)