robnardo

Results 9 comments of robnardo

hey @ababic - i would be interested in this. One possible solution could be to have multiple main menus. And add a handle field for each main menu created. Then...

actually.. if the Flat Menu has all the fields, then i could just do it using Flat menu.. hmm. I will give it a try in a few days.

Hey @jedie - i get the same error. I am building from python:3.6-alpine as well. My ENV and CMD in Dockerfile looks like this.. `ENV UWSGI_WSGI_FILE=base/wsgi.py UWSGI_HTTP=:8000 UWSGI_MASTER=1 UWSGI_WORKERS=2 UWSGI_THREADS=8...

I found that switching the uwsgi config to only one thread makes this go away. Here is my uwsgi config (from Dockerfile).. `ENV UWSGI_WSGI_FILE=base/wsgi.py UWSGI_HTTP=:8000 UWSGI_MASTER=1 UWSGI_WORKERS=8 UWSGI_UID=1000 UWSGI_GID=2000 UWSGI_TOUCH_RELOAD=touch-reload.txt...

I think this error is due to uswgi config. For my Django projects, I have been using Docker (based on **python:3.7-alpine**) in production with no issues. Below are my Dockerfile,...

I noticed the same thing. Please remove line 14 or make it text-align: left;

Hi All, this issue still exists. One of our marketing team members found an image of a credit card and wanted to put on our site. The image was able...

Does any one know if there are there any known issues of using python 3.7 for Ndscheduler?

I was also having this issue. I found that the reference to DATABASE_CLASS should be the following (notice the case of the class name). DatastoreMySQL should be DatastoreMysql `ndscheduler.core.datastore.providers.mysql.DatastoreMysql` I...