You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iota.apache.org by to...@apache.org on 2016/10/19 18:44:05 UTC

[6/8] incubator-iota git commit: Fix the type of the content shown on the monitoring event routes

Fix the type of the content shown on the monitoring event routes


Project: http://git-wip-us.apache.org/repos/asf/incubator-iota/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-iota/commit/17c643c7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-iota/tree/17c643c7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-iota/diff/17c643c7

Branch: refs/heads/master
Commit: 17c643c7591fe8ab05cd1b5c42a2635ccb1fae2d
Parents: 1bc453c
Author: Shivansh <sh...@gmail.com>
Authored: Thu Sep 29 10:12:01 2016 +0530
Committer: Shivansh <sh...@gmail.com>
Committed: Thu Sep 29 10:12:01 2016 +0530

----------------------------------------------------------------------
 fey-core/src/main/scala/org/apache/iota/fey/FeyUIService.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-iota/blob/17c643c7/fey-core/src/main/scala/org/apache/iota/fey/FeyUIService.scala
----------------------------------------------------------------------
diff --git a/fey-core/src/main/scala/org/apache/iota/fey/FeyUIService.scala b/fey-core/src/main/scala/org/apache/iota/fey/FeyUIService.scala
index f08790a..6fa7a3c 100644
--- a/fey-core/src/main/scala/org/apache/iota/fey/FeyUIService.scala
+++ b/fey-core/src/main/scala/org/apache/iota/fey/FeyUIService.scala
@@ -61,7 +61,7 @@ class FeyUIService(urlPath: String, port: Int) extends NettyServerComponents wit
       } catch {
         case e: Exception => ""
       }
-      Results.Ok(returnValue).as("application/json")
+      Results.Ok(returnValue).as("text/html")
     }
   }