File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -439,19 +439,19 @@ var pauseAssignmentsCmd = &cobra.Command{
439439 Long : "Pause all process assignments for the specified colony" ,
440440 Run : func (cmd * cobra.Command , args []string ) {
441441 client := setup ()
442- err := client .PauseColonyAssignments (ColonyName , PrvKey )
442+ err := client .PauseColonyAssignments (ColonyName , ColonyPrvKey )
443443 CheckError (err )
444444 log .WithFields (log.Fields {"Colony" : ColonyName }).Info ("Colony process assignments have been paused" )
445445 },
446446}
447447
448448var resumeAssignmentsCmd = & cobra.Command {
449- Use : "resume" ,
449+ Use : "resume" ,
450450 Short : "Resume process assignments for a colony" ,
451451 Long : "Resume all process assignments for the specified colony" ,
452452 Run : func (cmd * cobra.Command , args []string ) {
453453 client := setup ()
454- err := client .ResumeColonyAssignments (ColonyName , PrvKey )
454+ err := client .ResumeColonyAssignments (ColonyName , ColonyPrvKey )
455455 CheckError (err )
456456 log .WithFields (log.Fields {"Colony" : ColonyName }).Info ("Colony process assignments have been resumed" )
457457 },
You can’t perform that action at this time.
0 commit comments