Skip to content

Commit

Permalink
Fix adapt_wsgi (#25)
Browse files Browse the repository at this point in the history
Remove useless port from run method

In wsgi config file /etc/edx_adapt/edx_adapt.ini we already specified application callable method as app
  • Loading branch information
Igor Degtiarov authored Jan 12, 2017
1 parent e615a50 commit b3e859a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adapt_wsgi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from edx_adapt.api.adapt_api import app

if __name__ == "__main__":
app.run(port=8080)
app.run()

0 comments on commit b3e859a

Please sign in to comment.