Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TomerHeber committed Dec 19, 2024
1 parent 1b40f38 commit e037d50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion env0/resource_environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ func waitForEnvironmentDestroy(ctx context.Context, apiClient client.ApiClientIn
}

ticker := time.NewTicker(waitInterval) // When invoked - check the status.
timer := time.NewTimer(timeout) // When invoked - timeout.
timer := time.NewTimer(timeout) // When invoked - timeout.
results := make(chan error)

go func() {
Expand Down
2 changes: 1 addition & 1 deletion env0/resource_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ func resourceProjectDelete(ctx context.Context, d *schema.ResourceData, meta int
waitInterval = time.Second
}

ticker := time.NewTicker(waitInterval) // When invoked check if project can be deleted.
ticker := time.NewTicker(waitInterval) // When invoked check if project can be deleted.
timer := time.NewTimer(PROJECT_DESTROY_TOTAL_WAIT_TIME) // When invoked wait time has elapsed.
done := make(chan bool)

Expand Down

0 comments on commit e037d50

Please sign in to comment.