We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e23c286 commit 563ea2dCopy full SHA for 563ea2d
plugins/out_pgsql/pgsql.h
@@ -67,7 +67,7 @@ struct flb_pgsql_config {
67
/* instance reference */
68
struct flb_output_instance *ins;
69
70
- /* connections */
+ /* connections options */
71
const char *conn_options;
72
73
/* connections pool */
plugins/out_pgsql/pgsql_connections.c
@@ -55,7 +55,6 @@ void *pgsql_create_connection(struct flb_pgsql_config *ctx)
55
return NULL;
56
}
57
58
- flb_plg_debug(ctx->ins, "connection_options: %s", ctx->conn_options);
59
conn->conn = PQsetdbLogin(ctx->db_hostname,
60
ctx->db_port,
61
ctx->conn_options,
0 commit comments