kkhatua commented on a change in pull request #1531: DRILL-5571: Cancel running 
query from its Web UI
URL: https://github.com/apache/drill/pull/1531#discussion_r232543357
 
 

 ##########
 File path: exec/java-exec/src/main/resources/rest/profile/profile.ftl
 ##########
 @@ -50,6 +50,34 @@
         "info": false
       }
     );} );
+
+    //Show cancellation status
+    function showCancelPopup(queryId) {
+        document.getElementById("cancelText").innerHTML = "Issued cancellation 
for query ID: <br>"+queryId+"<br>Click to continue";
+        document.getElementById("cancelPopup").style.display = "block";
+    }
+
+    //Close the cancellation status popup
+    function closePopup() {
+        document.getElementById("cancelPopup").style.display = "none";
+        location.reload(true);
+    }
+
+    //Cancel query
+    function cancelQuery(queryId) {
+        var cancelRestURL = location.protocol + "//" + location.hostname + 
"/profiles/cancel/" + queryId;
+        let restPort = location.port;
+        if (restPort != 0) {
 
 Review comment:
   `location.port` returns 0 if the port number is standard. However, I've 
changed this because I realized I don't really need the server as the 
`/profiles/cancel/...` will be made on the same server that served the profile 
UI.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to