Skip to content

Commit

Permalink
[ISSUE apache#3685] Fix param spelling error (apache#3678)
Browse files Browse the repository at this point in the history
* Update .travis.yml

Depracated MODERATE noisy mail for dev@rocketmq.apache.org. Still Failing: apache#5670 (5.0.0-alpha-static-topic - 5ebc327) @dongeforever

* fix class[RemotingHelper]  method[exceptionSimpleDesc] var[element] spelling error
  • Loading branch information
RookieRoll committed Jan 6, 2022
1 parent 1ff539c commit ca6c2da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ notifications:
email:
recipients:
- dev@rocketmq.apache.org
if: branch = develop OR branch = master
on_success: change
on_failure: always


language: java

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public static String exceptionSimpleDesc(final Throwable e) {

StackTraceElement[] stackTrace = e.getStackTrace();
if (stackTrace != null && stackTrace.length > 0) {
StackTraceElement elment = stackTrace[0];
StackTraceElement element = stackTrace[0];
sb.append(", ");
sb.append(elment.toString());
sb.append(element.toString());
}
}

Expand Down

0 comments on commit ca6c2da

Please sign in to comment.