fix another error, better debugging

This commit is contained in:
Bernhard Posselt 2013-08-05 16:20:44 +02:00
Родитель c67335d9f8
Коммит 1f9784dbdb
2 изменённых файлов: 9 добавлений и 5 удалений

Просмотреть файл

@ -47,9 +47,10 @@ class UpdateThread(threading.Thread):
else:
return
# call the update method of one feed
feed['feedId'] = feed['id']
del feed['id']
# call the update method of one feed
data = urllib.parse.urlencode(feed)
headers = {
'Content-type': 'application/json',
@ -58,9 +59,12 @@ class UpdateThread(threading.Thread):
url = '%s?%s' % (self.update_url, data)
try:
response = urllib.request.urlopen(url)
except urllib.error.HTTPError:
print('%s does not exist' % url)
response = urllib.request.urlopen(url, timeout=60)
print('succ!')
print(url)
print(response.read())
except urllib.error.HTTPError as e:
print('%s: %s' % (url, e))
self.run()

2
external/feedapi.php поставляемый
Просмотреть файл

@ -209,7 +209,7 @@ class FeedAPI extends Controller {
*/
public function update() {
$userId = $this->params('userId');
$feedId = $this->params('feedId');
$feedId = (int) $this->params('feedId');
try {
$this->feedBusinessLayer->update($feedId, $userId);