Commit f29f83ca by bergquist

chore: adds comment out why the code was added

parent 3c9357a2
...@@ -122,6 +122,7 @@ function joinEvalMatches(matches, separator: string) { ...@@ -122,6 +122,7 @@ function joinEvalMatches(matches, separator: string) {
res.push(ev.metric + '=' + ev.value); res.push(ev.metric + '=' + ev.value);
} }
// For backwards compatibility . Should be be able to remove this after ~2017-06-01
if (ev.Metric !== undefined && ev.Value !== undefined) { if (ev.Metric !== undefined && ev.Value !== undefined) {
res.push(ev.Metric + '=' + ev.Value); res.push(ev.Metric + '=' + ev.Value);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment