From 0a501eda6e2cfcb78fe1a9e00eca25809aa69231 Mon Sep 17 00:00:00 2001
From: Chris Pomeroy <chris.pomeroy@hotmail.com>
Date: Wed, 21 Mar 2018 05:34:03 +0000
Subject: [PATCH] Set the timeout to never

---
 aaxConvert.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/aaxConvert.py b/aaxConvert.py
index 5ae5d59..672553b 100755
--- a/aaxConvert.py
+++ b/aaxConvert.py
@@ -138,7 +138,7 @@
 def getcorrectkey(aaxfile):
     hex = filechecksum(aaxfile)
     payload = hex
-    r = requests.post('http://x86-docker01:8080/function/checkkey', payload, verify=False)
+    r = requests.post('http://x86-docker01:8080/function/checkkey', payload, verify=False, timeout=None)
     if r.status_code == 200:
         key = r.text
     else: 

--
Gitblit v1.10.0