From c493d243496e80016845aa16cfa59773cb75be71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20S=C3=A1nchez=20Parra?= Date: Mon, 18 Oct 2021 16:51:12 +0200 Subject: [PATCH] Set tiptorrent as unique restore image method Soleta Networks only offers support of tiptorrent for restore image transferences. --- ogcp/forms/action_forms.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py index d881065..d618f24 100644 --- a/ogcp/forms/action_forms.py +++ b/ogcp/forms/action_forms.py @@ -80,8 +80,7 @@ class ImageRestoreForm(FlaskForm): partition = SelectField(label=_('Partition'), choices=[]) image = SelectField(label=_('Image'), choices=[]) method = SelectField(label=_('Method'), - choices=[('UNICAST-CACHE', 'Unicast Cache'), - ('UNICAST-DIRECT', 'Unicast Direct')]) + choices=[('TIPTORRENT', 'TIPTORRENT')]) restore = SubmitField(label=_('Restore')) class ClientDetailsForm(FlaskForm):