diff options
author | Julien Dessaux | 2023-08-03 00:47:30 +0200 |
---|---|---|
committer | Julien Dessaux | 2023-08-03 00:47:30 +0200 |
commit | aa825e5aae9457a55456aa8b4855c212ffcae80b (patch) | |
tree | e1c5ee6462705a69c9764d96fd5d179a47c0f390 | |
parent | Added identities and jobs datasource usage examples (diff) | |
download | terraform-provider-eventline-aa825e5aae9457a55456aa8b4855c212ffcae80b.tar.gz terraform-provider-eventline-aa825e5aae9457a55456aa8b4855c212ffcae80b.tar.bz2 terraform-provider-eventline-aa825e5aae9457a55456aa8b4855c212ffcae80b.zip |
Batch fetch projects api calls and updated changelogv0.0.6
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | external/evcli/client.go | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a518c28..6dac54e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 0.0.6 - 2023-08-03 + +### Features +* Add project datasource + +### Notes +* Added identities and jobs datasources usage examples +* Batch FetchProjects api calls + ## 0.0.5 - 2023-07-31 ### Features diff --git a/external/evcli/client.go b/external/evcli/client.go index ce3d4a0..769c19c 100644 --- a/external/evcli/client.go +++ b/external/evcli/client.go @@ -112,7 +112,7 @@ func (c *Client) SendRequest(method string, relURI *url.URL, body, dest interfac func (c *Client) FetchProjects() (eventline.Projects, error) { var projects eventline.Projects - cursor := eventline.Cursor{Size: 1} + cursor := eventline.Cursor{Size: 20} for { var page ProjectPage |