From e898262d1b6e4c626f5ff5239f0447cdded6c663 Mon Sep 17 00:00:00 2001 From: danielpygo Date: Fri, 31 Aug 2018 12:49:32 -0500 Subject: [PATCH] added query attributes map println, changed comment to deploymentName, chaned andgate println --- pkg/provenance/provenance.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/provenance/provenance.go b/pkg/provenance/provenance.go index cd752de..6fc45f8 100644 --- a/pkg/provenance/provenance.go +++ b/pkg/provenance/provenance.go @@ -275,7 +275,7 @@ func (o ObjectLineage) Bisect(argMap map[string]string) string { // ask if username ever is daniel and password is ever 223843, because // it could find that in different parts of the spec. They both must be satisfied in the same map object mapRelationships := buildAttributeRelationships(specs, allQueryPairs) - // fmt.Println(mapRelationships) + fmt.Printf("Query Attributes Map:%v\n", mapRelationships) // fmt.Println(specs) for _, spec := range specs { @@ -335,7 +335,7 @@ func (o ObjectLineage) Bisect(argMap map[string]string) string { } return "No version found that matches the query." } -//this is for a field like deployMent where the underyling state or data is a string +//this is for a field like deploymentName where the underyling state or data is a string func handleTrivialFields(fieldData, qkey, qval, mkey string) bool{ if qkey == mkey && qval == fieldData { return true