Use commonized serial console

This patch follows commonization of serial console in Horizon.

Change-Id: I41f236f2762613e56748bb05eb7ce0e4c26158d2
Depends-On: Ib0df9ddfc74f98bfea75abce3b5d5479e3cd47bd
This commit is contained in:
Shu Muto 2017-06-15 18:20:16 +09:00
parent fa57cda20c
commit fb51a6dcf6
1 changed files with 3 additions and 2 deletions

View File

@ -15,15 +15,16 @@ from zun_ui.api import client
class SerialConsoleView(generic.TemplateView):
template_name = 'project/instances/serial_console.html'
template_name = 'serial_console.html'
def get_context_data(self, **kwargs):
context = super(SerialConsoleView, self).get_context_data(**kwargs)
context['container_id'] = self.kwargs['container_id']
context['page_title'] = self.kwargs['container_id']
try:
console_url = client.container_attach(self.request,
self.kwargs['container_id'])
context["console_url"] = console_url
context["protocols"] = "['binary', 'base64']"
except Exception:
context["error_message"] = "Cannot get console for container %s." \
% self.kwargs['container_id']