Skip to content

Commit d070aa0

Browse files
Merge branch 'master' into mzochowski-201717-add-supression-diff-rule-for-time-formats
2 parents 4e2340f + 76f189e commit d070aa0

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
## 2.19.1 (Unreleased)
1+
## 2.19.2 (Unreleased)
2+
ENHANCEMENTS:
3+
* Suppress diffs for equivalent values of some time attributes. This should reduce output of `terraform plan` that didn't disappear after running `terraform apply`. (GH-442)
4+
5+
## 2.19.1 (October 6, 2022)
26
FEATURES:
37
* Add new optional `resolution_window` field to resource/sumologic_monitor (GH-418)
8+
49
BUG FIXES:
5-
* cse rules hard failing if passing tags with empty strings. (GH-445)
6-
ENHANCEMENTS:
7-
* Suppress diffs for equivalent values of some time attributes. This should reduce output of `terraform plan` that didn't disappear after running `terraform apply`. (GH-442)
10+
* CSE rules hard failing if passing tags with empty strings. (GH-445)
11+
* Return error when unable to read collectors. (GH-446)
812

913
## 2.19.0 (September 20, 2022)
1014
FEATURES:
@@ -46,7 +50,7 @@ BUG FIXES:
4650
## 2.16.2 (June 12, 2022)
4751

4852
BUG FIXES:
49-
* Monitor Folder provider now handles more error codes: "api_not_enabled", in addition to: "not_implemented_yet" (GH-389)
53+
* Monitor Folder provider now handles more error codes: "api_not_enabled", in addition to: "not_implemented_yet" (GH-389)
5054

5155
## 2.16.1 (June 6, 2022)
5256

@@ -55,7 +59,7 @@ BUG FIXES:
5559

5660
## 2.16.0 (May 20, 2022)
5761

58-
FEATURES:
62+
FEATURES:
5963
* Add new optional `obj_permission` set to resource/sumologic_monitor_folder for Fine Grain Permission (FGP) support (GH-373)
6064

6165
BUG FIXES:

sumologic/resource_sumologic_collector.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ func resourceSumologicCollectorRead(d *schema.ResourceData, meta interface{}) er
6161
collector, err = c.GetCollectorName(d.Id())
6262
if err != nil {
6363
log.Printf("[WARN] Collector not found when looking by name: %s, err: %v", d.Id(), err)
64+
return err
6465
} else if collector == nil {
6566
log.Printf("[WARN] Got a nil Collector when looking by name: %s", d.Id())
6667
} else {

0 commit comments

Comments
 (0)