We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d233b2 commit ad89483Copy full SHA for ad89483
.circleci/config.yml
@@ -82,7 +82,6 @@ workflows:
82
filters:
83
branches:
84
only:
85
- - INGEST-15507-nozzle-v2-update
86
- develop
87
- master
88
- tile-builder:
events/events.go
@@ -165,7 +165,10 @@ func (e *Event) AnnotateWithAppData(appCache cache.Cache) {
165
e.Fields["cf_org_name"] = cf_org_name
166
}
167
168
- e.Fields["info_splunk_index"] = app_env["SPLUNK_INDEX"]
+ if app_env["SPLUNK_INDEX"] != nil {
169
+ e.Fields["info_splunk_index"] = app_env["SPLUNK_INDEX"]
170
+ }
171
+
172
e.Fields["cf_ignored_app"] = cf_ignored_app
173
174
0 commit comments