Skip to content

Commit

Permalink
test: checking things
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-held-aiven committed Mar 5, 2024
1 parent cf867e9 commit 7bf752b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion internal/sdkprovider/service/pg/pg.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func resourceServicePGUpdate(ctx context.Context, d *schema.ResourceData, m inte
task := taskI.(*aiven.ServiceTaskResponse)
if !*task.Task.Success {
return diag.Errorf(
"PG service upgrade check error, version upgrade from %s to %s, result: %s",
"PG service upgrade task failed when checking version upgrade from %s to %s, result: %s",
task.Task.SourcePgVersion, task.Task.TargetPgVersion, task.Task.Result)
}

Expand Down
10 changes: 5 additions & 5 deletions internal/sdkprovider/service/redis/redis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ data "aiven_project" "foo" {
resource "aiven_redis" "bar" {
project = data.aiven_project.foo.project
cloud_name = "google-europe-west1"
plan = "startup-4"
plan = "hobbyist"
service_name = "test-acc-sr-%s"
maintenance_window_dow = "monday"
maintenance_window_time = "10:00:00"
Expand Down Expand Up @@ -114,7 +114,7 @@ data "aiven_project" "foo" {
resource "aiven_redis" "bar" {
project = data.aiven_project.foo.project
cloud_name = "google-europe-west1"
plan = "startup-4"
plan = "hobbyist"
service_name = "test-acc-sr-%s"
maintenance_window_dow = "monday"
maintenance_window_time = "10:00:00"
Expand Down Expand Up @@ -150,7 +150,7 @@ data "aiven_project" "foo" {
resource "aiven_redis" "bar" {
project = data.aiven_project.foo.project
cloud_name = "google-europe-west1"
plan = "startup-4"
plan = "hobbyist"
service_name = "test-acc-sr-%s"
maintenance_window_dow = "monday"
maintenance_window_time = "10:00:00"
Expand Down Expand Up @@ -234,7 +234,7 @@ data "aiven_project" "foo" {
resource "aiven_redis" "bar" {
project = data.aiven_project.foo.project
cloud_name = "google-europe-west1"
plan = "startup-4"
plan = "hobbyist"
service_name = "test-acc-sr-%s"
maintenance_window_dow = "monday"
maintenance_window_time = "10:00:00"
Expand Down Expand Up @@ -265,7 +265,7 @@ data "aiven_project" "foo" {
resource "aiven_redis" "bar" {
project = data.aiven_project.foo.project
cloud_name = "google-europe-west1"
plan = "startup-4"
plan = "hobbyist"
service_name = "test-acc-sr-%s"
maintenance_window_dow = "monday"
maintenance_window_time = "10:00:00"
Expand Down

0 comments on commit 7bf752b

Please sign in to comment.