Skip to content

Commit 6ed1b1d

Browse files
committed
Fix data_source_sumologic_apps to be compatible with latest sumologic_client
1 parent 9b562e2 commit 6ed1b1d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## X.Y.Z (Unreleased)
22
* Add new change notes here
33

4+
FEATURES:
5+
* **New Data Source:** sumologic_apps
6+
47
ENHANCEMENTS:
58
* Improve error message when an API URL is constructed with missing parameters
69

sumologic/data_source_sumologic_apps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ func (s *Client) getApps(name string, author string) (string, []App, error) {
124124
fullURL += "?" + params.Encode()
125125
}
126126

127-
data, _, err := s.Get(fullURL)
127+
data, err := s.Get(fullURL)
128128
if err != nil {
129129
return "", nil, err
130130
}

0 commit comments

Comments
 (0)