Skip to content

Commit

Permalink
数据库名称字段错误
Browse files Browse the repository at this point in the history
手误;数据库称字段错误
  • Loading branch information
violetgo committed Jul 15, 2015
1 parent a00ce7e commit b74fd73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/taobao/profile/thread/DataDumpThread.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private void dumpProfileData() {
for (int index = 0; index < threadData.length; index++) {
ThreadData profilerData = threadData[index];
if (profilerData == null) {
continue;
c continue;
}
ProfStack<long[]> profile = profilerData.profileData;
while (profile.size() > 0) {
Expand Down Expand Up @@ -152,7 +152,7 @@ private void dumpMysqlData(){
sb.append('\t');
sb.append(cur.getRequestDesc().get("port"));
sb.append('\t');
sb.append(cur.getRequestDesc().get("cmd"));
sb.append(cur.getRequestDesc().get("db"));
sb.append('\t');
sb.append(cur.getRequestDesc().get("sql"));
sb.append('\t');
Expand Down

0 comments on commit b74fd73

Please sign in to comment.