I recently got my first app to work in uWSGI with Cherokee. I used the following code taken from the uWSGI docs:
def application(environ, start_response):
start_response( 200 OK , [( Content-Type , text/plain )])
yield Hello World
The page correctly reads Hello World
. When I change that text to New Thing
and refresh, nothing changes. What am I forgetting?
What I ve tried:
- clearing browser history and cache
- stopping and starting Cherokee
Edit: To clarify, I change
Hello World
to New Thing
in the Python code. Then I stop Cherokee, refresh, and I obviously see an error message. I restart Cherokee, refresh, and I see Hello World
.