Skip to content

Commit

Permalink
Merge pull request #536 from armsnyder/increase-project-import-timeout
Browse files Browse the repository at this point in the history
Increase gitlab_project import timeout
  • Loading branch information
armsnyder authored Feb 1, 2021
2 parents e84c370 + 53eb962 commit 0fad62a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitlab/resource_gitlab_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ func resourceGitlabProjectCreate(d *schema.ResourceData, meta interface{}) error
stateConf := &resource.StateChangeConf{
Pending: []string{"scheduled", "started"},
Target: []string{"finished"},
Timeout: time.Minute,
Timeout: 10 * time.Minute,
Refresh: func() (interface{}, string, error) {
status, _, err := client.ProjectImportExport.ImportStatus(d.Id())
if err != nil {
Expand Down

0 comments on commit 0fad62a

Please sign in to comment.