mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-15 12:59:06 +00:00
Catch error when something that is not the GNS3 server answer to virtualbox requests
Fix #1155
This commit is contained in:
parent
3bb8cdafb2
commit
211f48d981
@ -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…
Reference in New Issue
Block a user