summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-03-11 16:58:01 -0800
committer=Corey Hulen <corey@hulen.com>2016-03-11 16:58:01 -0800
commit013f27ff1a5b502560864ebba43bd2ba6c8020ab (patch)
tree1de63bf6be2d0badbcc87884743bf817c38f2c62
parent6fa6ea0af532f2b5fb57a1f22431103b1c9e6e27 (diff)
downloadchat-013f27ff1a5b502560864ebba43bd2ba6c8020ab.tar.gz
chat-013f27ff1a5b502560864ebba43bd2ba6c8020ab.tar.bz2
chat-013f27ff1a5b502560864ebba43bd2ba6c8020ab.zip
Updating interface
-rw-r--r--einterfaces/compliance.go2
-rw-r--r--mattermost.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/einterfaces/compliance.go b/einterfaces/compliance.go
index 136f9a4d3..522a949db 100644
--- a/einterfaces/compliance.go
+++ b/einterfaces/compliance.go
@@ -6,7 +6,7 @@ package einterfaces
import ()
type ComplianceInterface interface {
- StartComplianceJob()
+ StartComplianceDailyJob()
}
var theComplianceInterface ComplianceInterface
diff --git a/mattermost.go b/mattermost.go
index 21620c539..de97d36a2 100644
--- a/mattermost.go
+++ b/mattermost.go
@@ -93,7 +93,7 @@ func main() {
runSecurityAndDiagnosticsJobAndForget()
if einterfaces.GetComplianceInterface() != nil {
- einterfaces.GetComplianceInterface().StartComplianceJob()
+ einterfaces.GetComplianceInterface().StartComplianceDailyJob()
}
// wait for kill signal before attempting to gracefully shutdown