From 47a96bff1a1945da3f7f61895340e6841288361a Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Mon, 17 Aug 2015 15:05:06 +0200 Subject: [PATCH] Update constant names in comments. --- retrieval/discovery/marathon/constants.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/retrieval/discovery/marathon/constants.go b/retrieval/discovery/marathon/constants.go index 41764cc3f..f9298d7be 100644 --- a/retrieval/discovery/marathon/constants.go +++ b/retrieval/discovery/marathon/constants.go @@ -10,10 +10,10 @@ const ( // appLabelPrefix is the prefix for the application labels. appLabelPrefix = metaLabelPrefix + "app_label_" - // AppLabel is used for the name of the app in Marathon. + // appLabel is used for the name of the app in Marathon. appLabel clientmodel.LabelName = metaLabelPrefix + "app" - // ImageLabel is the label that is used for the docker image running the service. + // imageLabel is the label that is used for the docker image running the service. imageLabel clientmodel.LabelName = metaLabelPrefix + "image" - // TaskLabel contains the mesos task name of the app instance. + // taskLabel contains the mesos task name of the app instance. taskLabel clientmodel.LabelName = metaLabelPrefix + "task" )