Catch error when something that is not the GNS3 server answer to virtualbox requests

Fix #1155
pull/1157/head
Julien Duponchelle 7 years ago
parent 3bb8cdafb2
commit 211f48d981
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -15,7 +15,6 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import json.decoder
import aiohttp
import logging
import asyncio
@ -232,10 +231,11 @@ class VirtualBoxGNS3VM(BaseGNS3VM):
pass
if resp:
try:
json_data = yield from resp.json()
except ValueError:
pass
if resp.status < 300:
try:
json_data = yield from resp.json()
except ValueError:
pass
resp.close()
session.close()

Loading…
Cancel
Save