Skip to content

Commit

Permalink
[Issue #758] fix license check issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jinrongluo committed Feb 8, 2022
1 parent 73fd389 commit b853d1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ public void processRequest(ChannelHandlerContext ctx, AsyncContext<HttpCommand>
try {
if (!IPUtils.isValidDomainOrIp(url, eventMeshHTTPServer.getEventMeshHttpConfiguration().eventMeshIpv4BlackList,
eventMeshHTTPServer.getEventMeshHttpConfiguration().eventMeshIpv6BlackList)) {
httpLogger.error("subscriber url {} is not valid", url);
responseEventMeshCommand = request.createHttpCommandResponse(
subscribeResponseHeader,
SubscribeResponseBody
Expand All @@ -161,6 +162,7 @@ public void processRequest(ChannelHandlerContext ctx, AsyncContext<HttpCommand>
return;
}
} catch (Exception e) {
httpLogger.error("subscriber url {} is not valid, error {}", url, e.getMessage());
responseEventMeshCommand = request.createHttpCommandResponse(
subscribeResponseHeader,
SubscribeResponseBody
Expand Down
2 changes: 1 addition & 1 deletion tools/third-party-dependencies/known-dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ guava-29.0-jre.jar
hamcrest-core-1.3.jar
httpclient-4.5.2.jar
httpcore-4.4.4.jar
ipaddress-5.3.3.jar
j2objc-annotations-1.3.jar
jackson-annotations-2.11.0.jar
jackson-core-2.11.0.jar
Expand Down Expand Up @@ -110,4 +111,3 @@ truth-0.30.jar
zipkin-2.23.2.jar
zipkin-reporter-2.16.3.jar
zipkin-sender-okhttp3-2.16.3.jar
ipaddress-5.3.3.jar

0 comments on commit b853d1c

Please sign in to comment.