Skip to content

Commit

Permalink
Merge pull request #3 from ocraviotto/be_extended
Browse files Browse the repository at this point in the history
Fixed param name in daemon cmd
  • Loading branch information
ocraviotto authored Aug 1, 2018
2 parents aacc64a + 68a9c3f commit 05e1b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func main() {

cmdDaemon.Flags().StringVarP(&marathonURL, "marathon-url", "",
defaults(os.Getenv("MARATHON_URL"), "http://marathon.mesos:8080"), "URL of Marathon")
cmdDaemon.Flags().StringVarP(&marathonURL, "mesos-leader-url", "",
cmdDaemon.Flags().StringVarP(&mesosLeaderURL, "mesos-leader-url", "",
defaults(os.Getenv("MESOS_LEADER_URL"), "http://leader.mesos:5050"), "URL of Mesos Leader")
cmdDaemon.Flags().StringVarP(&configKeyFile, "config-key", "", "", "Config public key file")
cmdDaemon.Flags().StringVarP(&masterKeyFile, "master-key", "", "", "Master private key file")
Expand Down

0 comments on commit 05e1b18

Please sign in to comment.