Skip to content

Commit

Permalink
release 3.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xxnet committed Sep 24, 2017
1 parent 927bf94 commit 7ace0ff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions code/default/download.md
@@ -1,11 +1,11 @@

## 下载(Download):
稳定版(Stable):
https://codeload.github.com/XX-net/XX-Net/zip/3.6.1
https://codeload.github.com/XX-net/XX-Net/zip/3.6.2


测试版(Test):
https://codeload.github.com/XX-net/XX-Net/zip/3.6.1
https://codeload.github.com/XX-net/XX-Net/zip/3.6.3


Android:
Expand Down
6 changes: 5 additions & 1 deletion code/default/gae_proxy/local/http_dispatcher.py
Expand Up @@ -186,12 +186,16 @@ def request(self, headers, body, url):
self.last_request_time = time.time()
q = Queue.Queue()
task = http_common.Task(headers, body, q, url)
unique_id = task.unique_id
task.set_state("start_request")
self.request_queue.put(task)
self.working_tasks[task.unique_id] = task
response = q.get(True)
task.set_state("get_response")
del self.working_tasks[task.unique_id]
try:
del self.working_tasks[task.unique_id]
except Exception as e:
xlog.error("http_dispatcher request unique_id %s, %s not found.", unique_id, task.unique_id)
return response

def retry_task_cb(self, task):
Expand Down
2 changes: 1 addition & 1 deletion code/default/version.txt
@@ -1 +1 @@
3.6.2
3.6.3

0 comments on commit 7ace0ff

Please sign in to comment.