Skip to content
Snippets Groups Projects
Commit 42104ae3 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Bugfix in proxy regarding passing on of query parameters

parent 5110a81a
No related branches found
No related tags found
No related merge requests found
...@@ -79,7 +79,8 @@ def vipslogicproxy(request, path): ...@@ -79,7 +79,8 @@ def vipslogicproxy(request, path):
r = requests.post r = requests.post
else: else:
return HttpResponseNotAllowed("Permitted methods are POST and GET") return HttpResponseNotAllowed("Permitted methods are POST and GET")
params = request.dict() params = request.urlencode()
#print params
try: try:
url = "http://%s/%s" % (settings.VIPSLOGIC_SERVER_NAME,path) url = "http://%s/%s" % (settings.VIPSLOGIC_SERVER_NAME,path)
#print url #print url
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment