Revert "Remove no-op InfluxDB URL param"

This reverts commit 21f548d3c0.
This commit is contained in:
Alexander A. Klimov 2024-01-16 12:19:47 +01:00
parent 6c03598678
commit fc5b1178c6
1 changed files with 1 additions and 0 deletions

View File

@ -554,6 +554,7 @@ Url::Ptr InfluxdbCommonWriter::AssembleBaseUrl()
url->SetScheme(GetSslEnable() ? "https" : "http");
url->SetHost(GetHost());
url->SetPort(GetPort());
url->AddQueryElement("precision", "ns");
return url;
}