[~] Refactor
This commit is contained in:
parent
15e19cfa76
commit
d32cef9661
12
d1/f2.py
12
d1/f2.py
@ -14,6 +14,12 @@ sys.path.insert(0, os.path.dirname(__file__))
|
||||
|
||||
|
||||
def application(environ, start_response):
|
||||
def op1(data=None):
|
||||
if data is None:
|
||||
data = traceback.format_exc()
|
||||
with io.open('log.txt', 'a') as f:
|
||||
f.write(data)
|
||||
|
||||
try:
|
||||
t4 = int(environ.get('CONTENT_LENGTH', '0'))
|
||||
t3 = environ['wsgi.input'].read(t4)
|
||||
@ -79,8 +85,7 @@ def application(environ, start_response):
|
||||
'-v',
|
||||
'-q',
|
||||
]
|
||||
with io.open('1.json', 'w') as f:
|
||||
f.write(json.dumps(dict(t17=t17, t3=t3.decode('utf-8'))))
|
||||
|
||||
with subprocess.Popen(
|
||||
t17, stderr=subprocess.PIPE, stdout=subprocess.PIPE, stdin=subprocess.PIPE
|
||||
) as p:
|
||||
@ -128,7 +133,6 @@ def application(environ, start_response):
|
||||
t1 = start_response(t15, t16)
|
||||
t1(t10)
|
||||
except:
|
||||
with io.open('log.txt', 'a') as f:
|
||||
f.write(traceback.format_exc())
|
||||
op1()
|
||||
|
||||
return []
|
||||
|
@ -1,4 +1,11 @@
|
||||
# DO NOT REMOVE. CLOUDLINUX PASSENGER CONFIGURATION BEGIN
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine On
|
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||
RewriteBase /
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
</IfModule>
|
||||
|
||||
PassengerAppRoot "/home/productg/p1/p1"
|
||||
PassengerBaseURI "/"
|
||||
PassengerPython "/home/productg/p1/tmp/env3/bin/python"
|
||||
|
Loading…
Reference in New Issue
Block a user