Github user harshach commented on a diff in the pull request:
https://github.com/apache/storm/pull/464#discussion_r27067015
--- Diff: storm-core/src/clj/backtype/storm/ui/core.clj ---
@@ -982,7 +1019,23 @@
(.killTopologyWithOpts nimbus name options)
(log-message "Killing topology '" name "' with wait time: "
wait-time " secs")))
(json-response (topology-op-response id "kill") (m "callback")))
-
+ (POST "/api/v1/uploadTopology" [:as {:keys [cookies servlet-request]} id
& params]
+ (let [valid-tplg (validate-tplg-submit-params params)
+ valid (valid-tplg :valid)]
+ (log-message "valid topology " valid-tplg)
+ (if (= valid true)
+ (let [tplg-file-data (params :topologyJar)
+ tplg-temp-file (tplg-file-data :tempfile)
--- End diff --
@Parth-Brahmbhatt yep its being handled by multi-part
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---