materialsproject / fireworks

The Fireworks Workflow Management Repo.
https://materialsproject.github.io/fireworks
Other
361 stars 185 forks source link

BUG: prevents https://github.com/materialsproject/fireworks/issues/401 #408

Closed jotelha closed 4 years ago

jotelha commented 4 years ago

web gui fails with gunicorn versions >= 20, https://github.com/materialsproject/fireworks/issues/401

computron commented 4 years ago

Do you know if the code works if we replace:

from gunicorn.six import iteritems

with:

from six import iteritems

The latter would be the preferred solution since we could continue to use the latest gunicorn.

computron commented 4 years ago

Thanks!