Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
c0e5d189
authored
Feb 02, 2013
by
tarokkk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed CloudStore @force_ssl decorator NameError: global name 'args' is not defined
parent
ffaa2c05
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
miscellaneous/store-server/CloudStore.py
+7
-7
No files found.
miscellaneous/store-server/CloudStore.py
View file @
c0e5d189
...
...
@@ -32,15 +32,15 @@ except:
def
force_ssl
(
original_function
):
def
new_function
(
*
args
,
**
kwargs
):
ssl
=
request
.
environ
.
get
(
'SSL_CLIENT_VERIFY'
,
'NONE'
)
if
ssl
!=
"SUCCESS"
:
abort
(
403
,
"Forbidden requests. This site need SSL verification! SSL status: "
+
ssl
)
if
FORCE_SSL
:
ssl
=
request
.
environ
.
get
(
'SSL_CLIENT_VERIFY'
,
'NONE'
)
if
ssl
!=
"SUCCESS"
:
abort
(
403
,
"Forbidden requests. This site need SSL verification! SSL status: "
+
ssl
)
else
:
return
original_function
(
*
args
,
**
kwargs
)
else
:
return
original_function
(
*
args
,
**
kwargs
)
if
FORCE_SSL
:
return
new_function
else
:
return
original_function
(
*
args
,
**
kwargs
)
return
new_function
@route
(
'/'
)
@force_ssl
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment