Harish Madineni created STORM-4018:
--------------------------------------
Summary: Wrong order of the params in Storm API resource
Key: STORM-4018
URL: https://issues.apache.org/jira/browse/STORM-4018
Project: Apache Storm
Issue Type: Bug
Reporter: Harish Madineni
[https://github.com/apache/storm/blob/master/storm-webapp/src/main/java/org/apache/storm/daemon/ui/resources/StormApiResource.java#L551]
Wrong order of the params
{noformat}
UIHelpers.putTopologyDebugActionSpct(
nimbusClient.getClient(), id, component, action,
spct
),{noformat}
where as it should be as
{noformat}
UIHelpers.putTopologyDebugActionSpct(
nimbusClient.getClient(), id, action, spct, component
){noformat}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)