Skip to content

Commit

Permalink
chore: Change email and issue reporter (#2470)
Browse files Browse the repository at this point in the history
- Email changed to the new one in the README.
- Issue reporter added for convenience.
- Log from previous PR corrected.
  • Loading branch information
sfc-gh-asawicki authored Feb 7, 2024
1 parent d685603 commit 5865655
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/team-jira-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
"labels": ["${{ secrets.JIRA_LABEL }}"],
"customfield_11401": {"id": "${{ secrets.JIRA_AREA }}"},
"customfield_10008": "${{ secrets.JIRA_EPIC }}",
"assignee": {"id": "${{ secrets.JIRA_ASSIGNEE }}"}
"assignee": {"id": "${{ secrets.JIRA_ASSIGNEE }}"},
"reporter": {"id": "${{ secrets.JIRA_ASSIGNEE }}"}
}
}
}'
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ test: test-client ## run unit and integration tests
go test -v -cover -timeout=30m ./...

test-acceptance: ## run acceptance tests
TF_ACC=1 go test -run "^TestAcc_" -v -cover -timeout=30m ./...
TF_ACC=1 go test -run "^TestAcc_" -v -cover -timeout=45m ./...

test-integration: ## run SDK integration tests
go test -run "^TestInt_" -v -cover -timeout=20m ./...
go test -run "^TestInt_" -v -cover -timeout=30m ./...

test-architecture: ## check architecture constraints between packages
go test ./pkg/architests/... -v
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Snowflake Terraform Provider

> ⚠️ **Please note**: If you believe you have found a security issue, _please responsibly disclose_ by contacting us at [team-cloud-foundation-tools-[email protected]](mailto:team-cloud-foundation-tools[email protected]).
> ⚠️ **Please note**: If you believe you have found a security issue, _please responsibly disclose_ by contacting us at [triage-terraformprovider-[email protected]](mailto:triage-terraformprovider[email protected]).
> ⚠️ **Disclaimer**: the project is still in the 0.x.x version, which means it’s still in the experimental phase (check [Go module versioning](https://go.dev/doc/modules/version-numbers#v0-number) for more details). It can be used in production but makes no stability or backward compatibility guarantees. We do not provide backward bug fixes and, therefore, always suggest using the newest version. We are providing only limited support for the provider; priorities will be assigned on a case-by-case basis.
>
Expand Down
2 changes: 1 addition & 1 deletion pkg/resources/table_constraint.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ func UpdateTableConstraint(d *schema.ResourceData, meta interface{}) error {
alterStatement := sdk.NewAlterTableRequest(*tableIdentifier).WithConstraintAction(sdk.NewTableConstraintActionRequest().WithRename(constraintRequest))
err = client.Tables.Alter(ctx, alterStatement)
if err != nil {
return fmt.Errorf("error renaming table constraint %v err = %w", &tc.name, err)
return fmt.Errorf("error renaming table constraint %s err = %w", tc.name, err)
}
}

Expand Down

0 comments on commit 5865655

Please sign in to comment.