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

Commit

Permalink
Fix 393: Change namespace from Control to Scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
geauxvirtual committed Oct 9, 2015
1 parent 18b0ac8 commit 8b7e30c
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 8b7e30c

Please sign in to comment.