Explorar o código

fixed a bug in the write method of influx handler

tanja %!s(int64=3) %!d(string=hai) anos
pai
achega
d319aedb0d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      cdplib/db_handlers/InfluxdbHandler.py

+ 1 - 1
cdplib/db_handlers/InfluxdbHandler.py

@@ -152,7 +152,7 @@ class InfluxdbHandler:
         for column in measurement_columns:
             try:
                 self.client.write_points(
-                    dataframe=dataframe[column].to_frame(),
+                    dataframe=dataframe[[column] + tag_columns],
                     measurement=column,
                     tag_columns=tag_columns,
                     protocol='line',