Skip to content

Commit

Permalink
added handler for rds instance and cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
purehyperbole committed Nov 29, 2016
1 parent 419070b commit 9b8d1a5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ func genericHandler(msg *nats.Msg) {
case "s3s":
var n S3Bucket
msgLines = n.Handle(msg.Subject, input.Components, msgLines)
case "rds_clusters":
var n RDSCluster
msgLines = n.Handle(msg.Subject, input.Components, msgLines)
case "rds_instances":
var n RDSInstance
msgLines = n.Handle(msg.Subject, input.Components, msgLines)
default:
switch msg.Subject {
case "executions.create.done":
Expand Down

0 comments on commit 9b8d1a5

Please sign in to comment.