Github user prasadns14 commented on a diff in the pull request:
https://github.com/apache/drill/pull/1021#discussion_r148945878
--- Diff: exec/java-exec/src/main/resources/rest/profile/profile.ftl ---
@@ -135,6 +135,8 @@ table.sortable thead .sorting_desc { background-image:
url("/static/img/black-de
<#assign queueName = model.getProfile().getQueueName() />
<#assign queued = queueName != "" && queueName != "-" />
+ <#assign queryStateDisplayName = ["Starting", "Running", "Succeeded",
"Canceled", "Failed",
--- End diff --
Query state is displayed in two places - list.ftl (accessed via
ProfileResources.java) and profile.ftl (accessed via QueryProfile.proto). So, I
had to duplicate the array once in ProfileResources.java & once in profile.ftl
---