Этот коммит содержится в:
=Corey Hulen
2016-03-11 16:58:01 -08:00
родитель 6fa6ea0af5
Коммит 013f27ff1a
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@@ -6,7 +6,7 @@ package einterfaces
import () import ()
type ComplianceInterface interface { type ComplianceInterface interface {
StartComplianceJob() StartComplianceDailyJob()
} }
var theComplianceInterface ComplianceInterface var theComplianceInterface ComplianceInterface

Просмотреть файл

@@ -93,7 +93,7 @@ func main() {
runSecurityAndDiagnosticsJobAndForget() runSecurityAndDiagnosticsJobAndForget()
if einterfaces.GetComplianceInterface() != nil { if einterfaces.GetComplianceInterface() != nil {
einterfaces.GetComplianceInterface().StartComplianceJob() einterfaces.GetComplianceInterface().StartComplianceDailyJob()
} }
// wait for kill signal before attempting to gracefully shutdown // wait for kill signal before attempting to gracefully shutdown