summaryrefslogtreecommitdiffstats
path: root/app/security_update_check.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-03-22 14:51:38 +0000
committerHarrison Healey <harrisonmhealey@gmail.com>2017-03-22 10:51:38 -0400
commit0e98dfa445722d69bd553e5b657db7162d96cd5b (patch)
tree7fa80cb44a057a5b76ef59586f662c61b9b9b76d /app/security_update_check.go
parent20a2e6fab7b0bf837a53cdd85ad33102e27c2ab2 (diff)
downloadchat-0e98dfa445722d69bd553e5b657db7162d96cd5b.tar.gz
chat-0e98dfa445722d69bd553e5b657db7162d96cd5b.tar.bz2
chat-0e98dfa445722d69bd553e5b657db7162d96cd5b.zip
PLT-5872: Remove Security Category from Security Alerts. (#5835)
It wasn't actually providing any information, just `c=d` every time.
Diffstat (limited to 'app/security_update_check.go')
-rw-r--r--app/security_update_check.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/app/security_update_check.go b/app/security_update_check.go
index 9ad6572c1..2b000f2b2 100644
--- a/app/security_update_check.go
+++ b/app/security_update_check.go
@@ -20,8 +20,6 @@ const (
SECURITY_UPDATE_PERIOD = 86400000 // 24 hours in milliseconds.
PROP_SECURITY_ID = "id"
- PROP_SECURITY_CATEGORY = "c"
- VAL_SECURITY_CATEGORY_DEFAULT = "d"
PROP_SECURITY_BUILD = "b"
PROP_SECURITY_ENTERPRISE_READY = "be"
PROP_SECURITY_DATABASE = "db"
@@ -49,7 +47,6 @@ func DoSecurityUpdateCheck() {
v.Set(PROP_SECURITY_ENTERPRISE_READY, model.BuildEnterpriseReady)
v.Set(PROP_SECURITY_DATABASE, utils.Cfg.SqlSettings.DriverName)
v.Set(PROP_SECURITY_OS, runtime.GOOS)
- v.Set(PROP_SECURITY_CATEGORY, VAL_SECURITY_CATEGORY_DEFAULT)
if len(props[model.SYSTEM_RAN_UNIT_TESTS]) > 0 {
v.Set(PROP_SECURITY_UNIT_TESTS, "1")