Skip to content
This repository has been archived by the owner on Dec 5, 2020. It is now read-only.

fixed: ping test would fail during terraform apply #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions influxdb/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,6 @@ func configure(d *schema.ResourceData) (interface{}, error) {
return nil, err
}

_, _, err = conn.Ping()
if err != nil {
return nil, fmt.Errorf("error pinging server: %s", err)
}

return conn, nil
}

Expand Down