Skip to content

Commit

Permalink
PLT-5872: Remove Security Category from Security Alerts.
Browse files Browse the repository at this point in the history
It wasn't actually providing any information, just `c=d` every time.
  • Loading branch information
grundleborg committed Mar 22, 2017
1 parent 20a2e6f commit 448ec32
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions app/security_update_check.go
Expand Up @@ -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"
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 448ec32

Please sign in to comment.