Skip to content

Commit

Permalink
Merge pull request #21 from form3tech-oss/waterdrips-correct-wait
Browse files Browse the repository at this point in the history
Fix name in request delay parameter config
  • Loading branch information
Waterdrips authored Jun 24, 2020
2 parents 36b4ee0 + 6c446c1 commit 6ad92eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion auth0/auth0_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
// 3. Simulate throttled load to GetUserById
// 4. Clean up the created user
func TestAccGetUserByIdIsNotRateLimited(t *testing.T) {
auth0RetryCount := 2
auth0RetryCount := 20
timeBeetwenRetries := time.Second
numberOfRequests := 100
numberOfGoRoutines := 10
Expand Down
2 changes: 1 addition & 1 deletion auth0/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func providerConfigure(d *schema.ResourceData) (interface{}, error) {
clientId := d.Get("auth0_client_id").(string)
clientSecret := d.Get("auth0_client_secret").(string)
maxRetryCount := d.Get("auth0_request_max_retry_count").(int)
timeBetweenRetries := d.Get("auth0_request_max_retry_count").(int)
timeBetweenRetries := d.Get("auth0_time_between_retries").(int)

config := &Config{
domain: domain,
Expand Down

0 comments on commit 6ad92eb

Please sign in to comment.