GitHub user httfighter opened a pull request:
https://github.com/apache/storm/pull/2364
[STORM-2772] In the DRPCSpout class, when the fetch from the DRPC server
fails,the log should return to get the DRPC request failed instead of getting
the DRPC result failed
[https://issues.apache.org/jira/browse/STORM-2772](https://issues.apache.org/jira/browse/STORM-2772)
In the DRPCSpout class, when the fetch from the DRPC server fails, the log
error should return to get the DRPC request failed instead of getting the DRPC
result failed.
for example, in line 216 of DRPCSpout class,
LOG.error("Not authorized to fetch DRPC result from DRPC server", aze);
this should be modified to
LOG.error("Not authorized to fetch DRPC request from DRPC server", aze);
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/httfighter/storm branch_4
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/storm/pull/2364.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #2364
----
commit cf91236b385065209cf50d86d2d3071a402e5cd8
Author: httfighter <[email protected]>
Date: 2017-10-10T02:51:06Z
In the DRPCSpout class, when the fetch from the DRPC server fails, the log
should return to get the DRPC request failed instead of getting the DRPC result
failed
----
---