Skip to content

Commit 49433b3

Browse files
committed
Adding embed.expiry to the exclusion list for views
1 parent 05995dc commit 49433b3

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,9 @@ As of October 2022, there are still no signs of version control within the Splun
326326
- [Search Head Backup](https://splunkbase.splunk.com/app/6438) - backup to an index, works in Splunk Cloud
327327

328328
## Release Notes
329+
### 1.2.16
330+
- `splunkversioncontrol_backup_class.py` - added "embed.expiry" to ignoreList (due to reports of issues in dashboards in new versions of Splunk cloud)
331+
329332
### 1.2.15
330333
- `splunkversioncontrol_backup_class.py` - added "embed.enabled" to ignoreList (due to reports of issues in dashboards in new versions of Splunk cloud)
331334

bin/splunkversioncontrol_backup_class.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ def macros(self, app):
944944
#
945945
###########################
946946
def dashboards(self, app):
947-
ignoreList = [ "embed.enabled", "disabled", "eai:appName", "eai:digest", "eai:userName", "isDashboard", "isVisible", "label", "rootNode", "description", "version" ]
947+
ignoreList = [ "embed.enabled", "embed.expiry", "disabled", "eai:appName", "eai:digest", "eai:userName", "isDashboard", "isVisible", "label", "rootNode", "description", "version" ]
948948
return self.runQueries(app, "/data/ui/views", "dashboards", ignoreList)
949949

950950
###########################

default/app.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ label = SplunkVersionControl
1212
[launcher]
1313
author = Gareth Anderson
1414
description = Version Control software for Splunk instances (backup/restore from git)
15-
version = 1.2.15
15+
version = 1.2.16
1616

1717
[package]
1818
id = SplunkVersionControl

0 commit comments

Comments
 (0)