Skip to content

Commit

Permalink
fix: Fix main (#3157)
Browse files Browse the repository at this point in the history
<!-- Feel free to delete comments as you fill this in -->
Main started to fail because of using a struct that was renamed - see
https://github.com/Snowflake-Labs/terraform-provider-snowflake/actions/runs/11513272472
  • Loading branch information
sfc-gh-jmichalak authored Oct 25, 2024
1 parent 494af6d commit 89b9705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/resources/stream_on_view.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func ReadStreamOnView(withExternalChangesMarking bool) schema.ReadContextFunc {
mode = *stream.Mode
}
if err = handleExternalChangesToObjectInShow(d,
showMapping{"mode", "append_only", string(mode), booleanStringFromBool(stream.IsAppendOnly()), nil},
outputMapping{"mode", "append_only", string(mode), booleanStringFromBool(stream.IsAppendOnly()), nil},
); err != nil {
return diag.FromErr(err)
}
Expand Down

0 comments on commit 89b9705

Please sign in to comment.