We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee7c724 commit 3298cb4Copy full SHA for 3298cb4
CHANGELOG.md
@@ -1,3 +1,6 @@
1
+## 1.0.2 (Aug 1, 2024)
2
+Fixes a bug where imported `segment_reverse_etl_model` resources could have invalid configuration parameters.
3
+
4
## 1.0.1 (April 18, 2024)
5
Fixes a bug where the `segment_profiles_warehouse` resource was dereferencing a nil pointer upon invalid import.
6
internal/provider/models/reverse_etl_model.go
@@ -32,6 +32,10 @@ func (r *ReverseETLModelState) Fill(model api.ReverseEtlModel) error {
32
return err
33
}
34
r.ScheduleConfig = scheduleConfig
35
+ if r.ScheduleConfig.IsNull() {
36
+ empty := "{}"
37
+ r.ScheduleConfig = jsontypes.NewNormalizedPointerValue(&empty)
38
+ }
39
40
return nil
41
0 commit comments