This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new 555de82  fix config variable usage bug (#3815)
555de82 is described below

commit 555de82500563a063c5e2853a6f06b9e7a00b92a
Author: zhang-wei <pk...@outlook.com>
AuthorDate: Sat Nov 9 22:58:46 2019 +0800

    fix config variable usage bug (#3815)
---
 .../jdbc/postgresql/PreparedStatementExecuteMethodsInterceptor.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/apm-sniffer/apm-sdk-plugin/postgresql-8.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/postgresql/PreparedStatementExecuteMethodsInterceptor.java
 
b/apm-sniffer/apm-sdk-plugin/postgresql-8.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/postgresql/PreparedStatementExecuteMethodsInterceptor.java
index 6686e6b..b723782 100755
--- 
a/apm-sniffer/apm-sdk-plugin/postgresql-8.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/postgresql/PreparedStatementExecuteMethodsInterceptor.java
+++ 
b/apm-sniffer/apm-sdk-plugin/postgresql-8.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/postgresql/PreparedStatementExecuteMethodsInterceptor.java
@@ -58,7 +58,7 @@ public class PreparedStatementExecuteMethodsInterceptor 
implements InstanceMetho
             if (parameters != null && parameters.length > 0) {
                 int maxIndex = cacheObject.getMaxIndex();
                 String parameterString = buildParameterString(parameters, 
maxIndex);
-                int sqlParametersMaxLength = 
Config.Plugin.MySQL.SQL_PARAMETERS_MAX_LENGTH;
+                int sqlParametersMaxLength = 
Config.Plugin.POSTGRESQL.SQL_PARAMETERS_MAX_LENGTH;
                 if (sqlParametersMaxLength > 0 && parameterString.length() > 
sqlParametersMaxLength) {
                     parameterString = parameterString.substring(0, 
sqlParametersMaxLength) + "..." + "]";
                 }

Reply via email to