Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #395 from geauxvirtual/tb/fix_391_392
Browse files Browse the repository at this point in the history
Fix 393: Change namespace from Control to Scheduler
  • Loading branch information
geauxvirtual committed Oct 9, 2015
2 parents 18b0ac8 + 8b7e30c commit 9b123c2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions core/scheduler_event/scheduler_event.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import (
)

const (
TaskCreated = "Control.TaskCreated"
TaskDeleted = "Control.TaskDeleted"
TaskStarted = "Control.TaskStarted"
TaskStopped = "Control.TaskStopped"
TaskDisabled = "Control.TaskDisabled"
MetricCollected = "Control.MetricsCollected"
MetricCollectionFailed = "Control.MetricCollectionFailed"
TaskCreated = "Scheduler.TaskCreated"
TaskDeleted = "Scheduler.TaskDeleted"
TaskStarted = "Scheduler.TaskStarted"
TaskStopped = "Scheduler.TaskStopped"
TaskDisabled = "Scheduler.TaskDisabled"
MetricCollected = "Scheduler.MetricsCollected"
MetricCollectionFailed = "Scheduler.MetricCollectionFailed"
)

type TaskStartedEvent struct {
Expand Down

0 comments on commit 9b123c2

Please sign in to comment.