Skip to content

Commit

Permalink
issue: 3932766: [TFS Plugin]: Fixing The meta fields are broken when …
Browse files Browse the repository at this point in the history
…streaming.stream_only_new_samples flag is false
  • Loading branch information
ananalaghbar authored Jun 2, 2024
1 parent fcbf68d commit a527be1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/fluentd_telemetry_plugin/src/streamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,8 +513,8 @@ def _parse_telemetry_csv_metrics_to_json_without_delta(self, data):
key = modified_keys[i]
if value:
port_record[key] = self._convert_str_to_num(value)
if is_meta_fields_available:
port_record = self._append_meta_fields_to_dict(port_record)
if is_meta_fields_available:
port_record = self._append_meta_fields_to_dict(port_record)
output.append(port_record)
return output, None, keys_length

Expand Down

0 comments on commit a527be1

Please sign in to comment.