diff --git a/distributed/bokeh/scheduler.py b/distributed/bokeh/scheduler.py index 90ad77373a2..e51d9ee7c2d 100644 --- a/distributed/bokeh/scheduler.py +++ b/distributed/bokeh/scheduler.py @@ -53,8 +53,7 @@ template = jinja2.Template(template_source) -template_variables = {'pages': ['status', 'workers', 'tasks', 'system', - 'profile', 'counters']} +template_variables = {'pages': ['status', 'workers', 'tasks', 'system', 'profile']} def update(source, data): diff --git a/distributed/bokeh/worker.py b/distributed/bokeh/worker.py index d1f3e3b0006..023d7f16f55 100644 --- a/distributed/bokeh/worker.py +++ b/distributed/bokeh/worker.py @@ -32,7 +32,7 @@ template_source = f.read() template = jinja2.Template(template_source) -template_variables = {'pages': ['main', 'system', 'profile', 'crossfilter', 'counters']} +template_variables = {'pages': ['main', 'system', 'profile', 'crossfilter']} class StateTable(DashboardComponent):