Skip to content

Commit

Permalink
fix(temporal): use correct property value for temporal.retention
Browse files Browse the repository at this point in the history
This fixes an issue with setting the default namespace retention
back to the default of 30 days

Fixes: airbytehq/airbyte#28235

Signed-off-by: Justen Walker <[email protected]>
  • Loading branch information
justenwalker committed Aug 3, 2023
1 parent 7fc2209 commit 96ab515
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public TemporalUtils(@Property(name = "temporal.cloud.client.cert") final String
@Value("${temporal.cloud.host}") final String temporalCloudHost,
@Value("${temporal.cloud.namespace}") final String temporalCloudNamespace,
@Value("${temporal.host}") final String temporalHost,
@Property(name = "${temporal.retention}",
@Property(name = "temporal.retention",
defaultValue = "30") final Integer temporalRetentionInDays) {
this.temporalCloudClientCert = temporalCloudClientCert;
this.temporalCloudClientKey = temporalCloudClientKey;
Expand Down

0 comments on commit 96ab515

Please sign in to comment.