Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuajerin committed Nov 15, 2024
1 parent 2a60969 commit d947b68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ jobs:
TEMBO_HOST: ${{ secrets.TEMBO_HOST }}
TEMBO_DATA_HOST: ${{ secrets.TEMBO_DATA_HOST }}
run: go test -v -cover -timeout 20m ./internal/provider/
timeout-minutes: 20
timeout-minutes: 30
6 changes: 3 additions & 3 deletions internal/provider/instance_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ func TestTemboInstanceResource(t *testing.T) {
resource.TestCheckResourceAttr(resourceName, "connection_pooler.pooler.parameters.default_pool_size", "100"),
),
},
// Wait for 6 minutes to ensure that the initial backup has gone through
// Wait for 10 minutes to ensure that the initial backup has gone through
{
Config: testProviderConfig() + testInstanceResourceCreateConfig(instanceName, orgId),
Check: resource.ComposeTestCheckFunc(
func(s *terraform.State) error {
fmt.Println("Waiting for 6 minutes before checking first_recoverability_time...")
time.Sleep(6 * time.Minute)
fmt.Println("Waiting for 10 minutes before checking first_recoverability_time...")
time.Sleep(10 * time.Minute)
return nil
},
),
Expand Down

0 comments on commit d947b68

Please sign in to comment.