私はこの些細なファルコンアプリを持っています:
import falcon
class ThingsResource:
def on_get(self, req, resq) :
#"""Handels GET requests"""
resp.status = falcon.HTTP_200
resp.body = '{"message":"hello"}'
app = falcon.API()
things = ThingsResource()
app.add_route('/things', things)
この方法でgunicornを使用して実行しようとしています:
arif@ubuntu:~/dialer_api$ gunicorn things:app
しかし、これを接続しようとすると、次のようになりhttpie
ます。
arif@ubuntu:~$ http localhost:8000/things
HTTP/1.1 500 Internal Server Error
Connection: close
Content-Length: 141
Content-Type: text/html
<html>
<head>
<title>Internal Server Error</title>
</head>
<body>
<h1><p>Internal Server Error</p></h1>
</body>
</html>
これはとても些細なことですが、ここで何が問題なのかわかりませんか?