Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
1.0.1
-
None
-
None
Description
Updating to storm 1.0.1, running on Windows 7, I receive error messages from Datatables.
This occurs on the Topology Summary as well as the Component Summary for a spout/bolt
Example error: DataTables warning: table id=executor-stats-table - Requested unknown parameter '9' for row 0. For more information about this error, please see http://datatables.net/tn/4
If I edit index.html to remove the type: num targets, the errors go away.
For example.
$.getJSON("/api/v1/topology/summary",function(response,status,jqXHR) {
$.get("/templates/index-page-template.html", function(template) {
topologySummary.append(Mustache.render($(template).filter("#topology-summary-template").html(),response));
//name, owner, status, uptime, num workers, num executors, num tasks, replication count, assigned total mem, assigned total cpu, scheduler info
dtAutoPage("#topology-summary-table", {
columnDefs: [
//
,
,
{type: "time-str", targets: [3]} ]
});
$('#topology-summary [data-toggle="tooltip"]').tooltip();
});