Coder Social home page Coder Social logo

Comments (14)

oggioniale avatar oggioniale commented on August 20, 2024 3

@giohappy thanks I do this:

sudo add-apt-repository universe
sudo apt-get update -y
sudo apt-get install -y git-core git-buildpackage debhelper devscripts python3.10-dev python3.10-venv virtualenvwrapper
sudo apt-get install -y apt-transport-https ca-certificates curl lsb-release gnupg gnupg-agent software-properties-common vim

sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

sudo apt-get update -y
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose
sudo apt autoremove --purge

sudo usermod -aG docker ${USER}
su ${USER}

git clone https://github.com/GeoNode/geonode-project.git
cd geonode-project/
git checkout -b 4.2.4
cd ..

source /usr/share/virtualenvwrapper/virtualenvwrapper.sh
mkvirtualenv --python=/usr/bin/python3 my_geonode

pip install Django==3.2.13

django-admin startproject --template=./geonode-project -e py,sh,md,rst,json,yml,ini,env,sample,properties -n monitoring-cron -n Dockerfile my_geonode

cd my_geonode
python create-envfile.py --env_type test --hostname 10.0.2.54 --geonodepwd water --geoserverpwd water --pgpwd water --dbpwd water --geodbpwd water

docker compose build
docker compose up -d

and the GeoNode running but after docker compose up -d an error returns:

✔ Network my_geonode_default          Created                                                                                                                  0.1s 
 ✔ Volume "my_geonode-gsdatadir"       Created                                                                                                                  0.0s 
 ✔ Volume "my_geonode-backup-restore"  Created                                                                                                                  0.0s 
 ✔ Volume "my_geonode-nginxcerts"      Created                                                                                                                  0.0s 
 ✔ Volume "my_geonode-nginxconfd"      Created                                                                                                                  0.0s 
 ✔ Volume "my_geonode-rabbitmq"        Created                                                                                                                  0.0s 
 ✔ Volume "my_geonode-data"            Created                                                                                                                  0.0s 
 ✔ Volume "my_geonode-statics"         Created                                                                                                                  0.0s 
 ✔ Volume "my_geonode-tmp"             Created                                                                                                                  0.0s 
 ✔ Volume "my_geonode-dbdata"          Created                                                                                                                  0.0s 
 ✔ Volume "my_geonode-dbbackups"       Created                                                                                                                  0.0s 
 ✔ Container db4my_geonode             Healthy                                                                                                                 33.1s 
 ✔ Container nginx4my_geonode          Started                                                                                                                  2.5s 
 ✔ Container rabbitmq4my_geonode       Started                                                                                                                  2.7s 
 ✔ Container memcached4my_geonode      Started                                                                                                                  2.6s 
 ✔ Container gsconf4my_geonode         Healthy                                                                                                                 33.8s 
 ✔ Container letsencrypt4my_geonode    Started                                                                                                                  2.4s 
 ✘ Container django4my_geonode         Error                                                                                                                  125.9s 
 ✔ Container celery4my_geonode         Created                                                                                                                  0.0s 
 ✔ Container geoserver4my_geonode      Created  

from geonode-project.

kjetpett avatar kjetpett commented on August 20, 2024

@oggioniale seems to me that you missed a few steps in the installation procedure between
"mkvirtualenv...." and "python create-envfile.py...."

from geonode-project.

oggioniale avatar oggioniale commented on August 20, 2024

@kjetpett thanks
I have not executed these lines because I understand that:
These lines were "Alterantively" to the previous lines:

Alterantively you can also create the virtual env like below
python3.8 -m venv /home/geonode/dev/.venvs/my_geonode
source /home/geonode/dev/.venvs/my_geonode/bin/activate

pip install Django==3.2.13

and these lines were dedicated to "CantOS":

# CentOS
virtualenv -p python3 my_geonode
source my_geonode/bin/activate

django-admin startproject --template=./geonode-project -e py,sh,md,rst,json,yml,ini,env,sample,properties -n monitoring-cron -n Dockerfile my_geonode

and, finally, these lines were "If the previous command does not work":

# If the previous command does not work for some reason, try the following one
python -m django startproject --template=./geonode-project -e py,sh,md,rst,json,yml,ini,env,sample,properties -n monitoring-cron -n Dockerfile my_geonode

Which lines were to be carried out?

from geonode-project.

oggioniale avatar oggioniale commented on August 20, 2024

@kjetpett however I installed again adding two lines:

pip install Django==3.2.13
django-admin startproject --template=./geonode-project -e py,sh,md,rst,json,yml,ini,env,sample,properties -n monitoring-cron -n Dockerfile my_geonode

the new history commands is:

sudo add-apt-repository universe
sudo apt-get update -y
sudo apt-get install -y git-core git-buildpackage debhelper devscripts python3.10-dev python3.10-venv virtualenvwrapper
sudo apt-get install -y apt-transport-https ca-certificates curl lsb-release gnupg gnupg-agent software-properties-common vim

sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

sudo apt-get update -y
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose
sudo apt autoremove --purge

sudo usermod -aG docker ${USER}
su ${USER}

git clone https://github.com/GeoNode/geonode-project.git
cd geonode-project/
git checkout -b 4.2.4

source /usr/share/virtualenvwrapper/virtualenvwrapper.sh
mkvirtualenv --python=/usr/bin/python3 my_geonode

pip install Django==3.2.13
cd ..
django-admin startproject --template=./geonode-project -e py,sh,md,rst,json,yml,ini,env,sample,properties -n monitoring-cron -n Dockerfile my_geonode

cd geonode-project
python create-envfile.py --env_type test --hostname 10.0.2.54 --geonodepwd water --geoserverpwd water --pgpwd water --dbpwd water --geodbpwd water
(modified in vi the .env file with our project name)

./docker-build.sh

but the error is the same:

141.3 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
143.6 Obtaining file:///usr/src/%7B%7Bproject_name%7D%7D
143.6   Preparing metadata (setup.py): started
143.8   Preparing metadata (setup.py): finished with status 'error'
143.8   error: subprocess-exited-with-error
143.8   
143.8   × python setup.py egg_info did not run successfully.
143.8   │ exit code: 1
143.8   ╰─> [1 lines of output]
143.8       error: Invalid distribution name or version syntax: -project_name--4.0.0
143.8       [end of output]
143.8   
143.8   note: This error originates from a subprocess, and is likely not a problem with pip.
143.8 error: metadata-generation-failed
143.8 
143.8 × Encountered error while generating package metadata.
143.8 ╰─> See above for output.
143.8 
143.8 note: This is an issue with the package mentioned above, not pip.
143.8 hint: See above for details.
------
Dockerfile:40
--------------------
  39 |     
  40 | >>> RUN yes w | pip install --src /usr/src -r requirements.txt &&\
  41 | >>>     yes w | pip install -e .
  42 |     
--------------------
ERROR: failed to solve: process "/bin/sh -c yes w | pip install --src /usr/src -r requirements.txt &&    yes w | pip install -e ." did not complete successfully: exit code: 1
ERROR: Service 'django' failed to build : Build failed
WARNING! This will remove:
  - all stopped containers
  - all networks not used by at least one container
  - all images without at least one container associated to them
  - all build cache

Are you sure you want to continue? [y/N]

from geonode-project.

giohappy avatar giohappy commented on August 20, 2024

@oggioniale you're creating the my_geonode folder, where the project is rendered. This is the folder where you must execute the docker commands, and not geonode-project, which is the template project.

This is the step which looks wrong:

cd geocode-project
python create-envfile.py --env_type test --hostname 10.0.2.54 --geonodepwd water --geoserverpwd water --pgpwd water --dbpwd water --geodbpwd water
(modified in vi the .env file with our project name)

it should be

cd my_geonode
python create-envfile.py --env_type test --hostname 10.0.2.54 --geonodepwd water --geoserverpwd water --pgpwd water --dbpwd water --geodbpwd water
(modified in vi the .env file with our project name)

from geonode-project.

giohappy avatar giohappy commented on August 20, 2024

The django-admin startproject uses the geonode-project template and generates a project inside the folder you specify at the end of the command.
In your case you're doing:

django-admin startproject --template=./geonode-project -e py,sh,md,rst,json,yml,ini,env,sample,properties -n monitoring-cron -n Dockerfile my_geonode

This creates my_geonode folder, where the geonode project is created. This is where you will find everything to run GeoNode, including the create-envfile.py script.

from geonode-project.

kikislater avatar kikislater commented on August 20, 2024

docker compose logs django

from geonode-project.

oggioniale avatar oggioniale commented on August 20, 2024

@kikislater I reinstalled using version 4.2.2 and everything works fine now.
I will try to install version 4.2.4 again and provide the Django log content.

from geonode-project.

giohappy avatar giohappy commented on August 20, 2024

The error reported by the django container is (generally) a false error that we've started seeing recently. We are investigating.

If you execute docker compose up -d again it should report it fine.

from geonode-project.

oggioniale avatar oggioniale commented on August 20, 2024

@giohappy I can confirm what do you say. When I excute again the docker compose up -d everything work fine.

However below the content of logs django. I would also like to add that when I tried to upload a dataset in version 4.2.4 and encountered an error, the dataset remained pending and was not uploaded to the system.

django4geonode_water  |  * Restarting periodic command scheduler cron
django4geonode_water  |  * Stopping periodic command scheduler cron
django4geonode_water  |    ...done.
django4geonode_water  |  * Starting periodic command scheduler cron
django4geonode_water  |    ...done.
django4geonode_water  | \n\n\n
django4geonode_water  | -----------------------------------------------------
django4geonode_water  | STARTING DJANGO ENTRYPOINT Mon May 20 13:12:41 UTC 2024
django4geonode_water  | -----------------------------------------------------
django4geonode_water  | ***************************setting env*********************************
django4geonode_water  | ACCOUNT_EMAIL_CONFIRMATION_EMAIL=False
django4geonode_water  | MODIFY_TOPICCATEGORY=True
django4geonode_water  | LDAP_USER_SEARCH_FILTERSTR=(&(uid=%(user)s)(objectClass=person))
django4geonode_water  | X_FRAME_OPTIONS=SAMEORIGIN
django4geonode_water  | RESTART_POLICY_MAX_ATTEMPTS=3
django4geonode_water  | ASYNC_SIGNALS=True
django4geonode_water  | GEONODE_DATABASE_USER=geonode_water
django4geonode_water  | DJANGO_EMAIL_USE_SSL=False
django4geonode_water  | OGC_REQUEST_POOL_CONNECTIONS=10
django4geonode_water  | DATABASE_URL=postgis://geonode_water:water@db:5432/geonode_water
django4geonode_water  | OAUTH2_API_KEY=
django4geonode_water  | OGC_REQUEST_MAX_RETRIES=1
django4geonode_water  | GEOSERVER_LB_HOST_IP=geoserver
django4geonode_water  | POSTGRES_BASE_IMAGE_VERSION=15.3-latest
django4geonode_water  | ADMIN_USERNAME=admin
django4geonode_water  | API_LOCKDOWN=False
django4geonode_water  | HOSTNAME=a7bbfd67cc03
django4geonode_water  | AUTO_ASSIGN_REGISTERED_MEMBERS_TO_REGISTERED_MEMBERS_GROUP_NAME=True
django4geonode_water  | DJANGO_EMAIL_HOST=localhost
django4geonode_water  | ENABLE_JSONP=true
django4geonode_water  | POSTGRES_PASSWORD=water
django4geonode_water  | TIME_ENABLED=True
django4geonode_water  | CENTRALIZED_DASHBOARD_ENABLED=False
django4geonode_water  | GEOSERVER_CORS_ALLOWED_ORIGINS=*
django4geonode_water  | GEONODE_GEODATABASE_USER=geonode_water_data
django4geonode_water  | AVATAR_GRAVATAR_SSL=True
django4geonode_water  | ALLOWED_HOSTS=['django', '10.0.2.54']
django4geonode_water  | MONITORING_SERVICE_NAME=local-geonode
django4geonode_water  | FAVORITE_ENABLED=True
django4geonode_water  | USER_ANALYTICS_GZIP=True
django4geonode_water  | GEONODE_BASE_IMAGE_VERSION=master
django4geonode_water  | CELERY_BEAT_SCHEDULER=celery.beat:PersistentScheduler
django4geonode_water  | MEMCACHED_LOCK_EXPIRE=3600
django4geonode_water  | RESTART_POLICY_WINDOW=120s
django4geonode_water  | C_FORCE_ROOT=1
django4geonode_water  | CACHE_BUSTING_STATIC_ENABLED=False
django4geonode_water  | MOSAIC_ENABLED=False
django4geonode_water  | DEFAULT_BACKEND_UPLOADER=geonode.importer
django4geonode_water  | EXIF_ENABLED=True
django4geonode_water  | COMPOSE_PROJECT_NAME=geonode_water
django4geonode_water  | LOCKDOWN_GEONODE=False
django4geonode_water  | LDAP_GROUP_SEARCH_FILTERSTR=(|(cn=abt1)(cn=abt2)(cn=abt3)(cn=abt4)(cn=abt5)(cn=abt6))
django4geonode_water  | MAX_DOCUMENT_SIZE=200
django4geonode_water  | RESTART_POLICY_DELAY=5s
django4geonode_water  | RESOLVER=127.0.0.11
django4geonode_water  | LDAP_USER_SEARCH_DN=dc=ad,dc=example,dc=org
django4geonode_water  | NGINX_BASE_URL=http://10.0.2.54
django4geonode_water  | MEMCACHED_BACKEND=django.core.cache.backends.memcached.MemcachedCache
django4geonode_water  | MEMCACHED_OPTIONS=
django4geonode_water  | PWD=/usr/src/geonode_water
django4geonode_water  | GEOSERVER_CORS_ALLOWED_METHODS=GET,POST,PUT,DELETE,HEAD,OPTIONS
django4geonode_water  | BING_API_KEY=
django4geonode_water  | ACCOUNT_AUTHENTICATION_METHOD=username_email
django4geonode_water  | MEMCACHED_LOCK_TIMEOUT=10
django4geonode_water  | HAYSTACK_ENGINE_INDEX_NAME=haystack
django4geonode_water  | OGC_REQUEST_TIMEOUT=30
django4geonode_water  | GEOSERVER_CORS_ALLOWED_HEADERS=*
django4geonode_water  | DJANGO_EMAIL_PORT=25
django4geonode_water  | DEFAULT_ANONYMOUS_DOWNLOAD_PERMISSION=True
django4geonode_water  | STATIC_ROOT=/mnt/volumes/statics/static/
django4geonode_water  | ADMIN_MODERATE_UPLOADS=False
django4geonode_water  | _=/usr/bin/env
django4geonode_water  | LETSENCRYPT_BASE_IMAGE_VERSION=2.6.0-latest
django4geonode_water  | GEONODE_DB_CONN_MAX_AGE=0
django4geonode_water  | TASTYPIE_APIKEY=
django4geonode_water  | BROKER_URL=amqp://guest:guest@rabbitmq:5672/
django4geonode_water  | ADMIN_EMAIL=None
django4geonode_water  | HOME=/root
django4geonode_water  | LANG=C.UTF-8
django4geonode_water  | HTTP_PORT=80
django4geonode_water  | RESOURCE_PUBLISHING=False
django4geonode_water  | DEFAULT_BACKEND_DATASTORE=datastore
django4geonode_water  | CLIENT_RESULTS_LIMIT=5
django4geonode_water  | outFormat=text/javascript
django4geonode_water  | MAPBOX_ACCESS_TOKEN=
django4geonode_water  | HAYSTACK_ENGINE_URL=http://elasticsearch:9200/
django4geonode_water  | BACKUPS_VOLUME_DRIVER=local
django4geonode_water  | SECRET_KEY=E~+IcXeL|7/&\n@=uM>UvZh,T&9N<98g_DHmd6D:I@WQRa|Br(
django4geonode_water  | LDAP_BIND_DN=uid=ldapinfo,cn=users,dc=ad,dc=example,dc=org
django4geonode_water  | ADMIN_PASSWORD=water
django4geonode_water  | DATABASE_PORT=5432
django4geonode_water  | GEONODE_DATABASE_SCHEMA=public
django4geonode_water  | ACCOUNT_OPEN_SIGNUP=True
django4geonode_water  | DJANGO_EMAIL_HOST_PASSWORD=
django4geonode_water  | DEFAULT_MAX_UPLOAD_SIZE=5368709120
django4geonode_water  | HAYSTACK_SEARCH_RESULTS_PER_PAGE=200
django4geonode_water  | DJANGO_SETTINGS_MODULE=geonode_water.settings
django4geonode_water  | GEOSERVER_JAVA_OPTS=-Djava.awt.headless=true -Xms4G -Xmx4G -Dgwc.context.suffix=gwc -XX:+UnlockDiagnosticVMOptions -XX:+LogVMOutput -XX:LogFile=/var/log/jvm.log -XX:PerfDataSamplingInterval=500 -XX:SoftRefLRUPolicyMSPerMB=36000 -XX:-UseGCOverheadLimit -XX:ParallelGCThreads=4 -Dfile.encoding=UTF8 -Djavax.servlet.request.encoding=UTF-8 -Djavax.servlet.response.encoding=UTF-8 -Duser.timezone=GMT -Dorg.geotools.shapefile.datetime=false -DGS-SHAPEFILE-CHARSET=UTF-8 -DGEOSERVER_CSRF_DISABLED=true -DPRINT_BASE_URL=http://10.0.2.54/geoserver/pdf -DALLOW_ENV_PARAMETRIZATION=true -Xbootclasspath/a:/usr/local/tomcat/webapps/geoserver/WEB-INF/lib/marlin-0.9.3-Unsafe.jar -Dsun.java2d.renderer=org.marlin.pisces.MarlinRenderingEngine
django4geonode_water  | GEOSERVER_LB_PORT=8080
django4geonode_water  | ACCOUNT_EMAIL_REQUIRED=True
django4geonode_water  | ACCOUNT_APPROVAL_REQUIRED=False
django4geonode_water  | SITEURL=http://10.0.2.54/
django4geonode_water  | MEMCACHED_ENABLED=False
django4geonode_water  | GEONODE_LB_HOST_IP=django
django4geonode_water  | LDAP_ENABLED=False
django4geonode_water  | OAUTH2_CLIENT_ID=v8Igz94In7fOc4V
django4geonode_water  | API_LIMIT_PER_PAGE=1000
django4geonode_water  | USER_ANALYTICS_ENABLED=True
django4geonode_water  | DJANGO_EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
django4geonode_water  | GEOSERVER_LOCATION=http://geoserver:8080/geoserver/
django4geonode_water  | LDAP_BIND_PASSWORD=<something_secret>
django4geonode_water  | DEFAULT_MAX_PARALLEL_UPLOADS_PER_USER=5
django4geonode_water  | ACCOUNT_EMAIL_VERIFICATION=none
django4geonode_water  | GEONODE_GEODATABASE_SCHEMA=public
django4geonode_water  | HTTP_HOST=10.0.2.54
django4geonode_water  | HAYSTACK_SEARCH=False
django4geonode_water  | GEONODE_INSTANCE_NAME=geonode
django4geonode_water  | NGINX_BASE_IMAGE_VERSION=1.25.3-latest
django4geonode_water  | EMAIL_ENABLE=False
django4geonode_water  | LETSENCRYPT_MODE=disabled
django4geonode_water  | HTTPS_PORT=443
django4geonode_water  | SHLVL=1
django4geonode_water  | HTTPS_HOST=
django4geonode_water  | OGC_REQUEST_POOL_MAXSIZE=10
django4geonode_water  | POSTGRES_USER=postgres
django4geonode_water  | ACCOUNT_EMAIL_CONFIRMATION_REQUIRED=False
django4geonode_water  | GEODATABASE_URL=postgis://geonode_water_data:water@db:5432/geonode_water_data
django4geonode_water  | GEOSERVER_DATA_BASE_IMAGE_VERSION=2.24.3-latest
django4geonode_water  | LDAP_GROUP_PROFILE_MEMBER_ATTR=uniqueMember
django4geonode_water  | DJANGO_EMAIL_USE_TLS=False
django4geonode_water  | RESTART_POLICY_CONDITION=on-failure
django4geonode_water  | DJANGO_EMAIL_HOST_USER=
django4geonode_water  | MONITORING_HOST_NAME=geonode
django4geonode_water  | GEONODE_GEODATABASE_PASSWORD=water
django4geonode_water  | IS_CELERY=False
django4geonode_water  | GEONODE_DATABASE_PASSWORD=water
django4geonode_water  | DATABASE_HOST=db
django4geonode_water  | GEOSERVER_PUBLIC_LOCATION=http://10.0.2.54/geoserver/
django4geonode_water  | GEONODE_DB_CONN_TOUT=5
django4geonode_water  | CREATE_LAYER=True
django4geonode_water  | GEOSERVER_ADMIN_PASSWORD=water
django4geonode_water  | INVOKE_LOG_STDOUT=true
django4geonode_water  | GEOSERVER_CORS_ENABLED=True
django4geonode_water  | GOOGLE_API_KEY=
django4geonode_water  | GEOIP_PATH=/mnt/volumes/statics/geoip.db
django4geonode_water  | LC_ALL=C.UTF-8
django4geonode_water  | GEOSERVER_BASE_IMAGE_VERSION=2.24.3-latest
django4geonode_water  | GEONODE_CLIENT_LAYER_PREVIEW_LIBRARY=mapstore
django4geonode_water  | GEONODE_GEODATABASE=geonode_water_data
django4geonode_water  | OGC_REQUEST_BACKOFF_FACTOR=0.3
django4geonode_water  | MEMCACHED_LOCATION=memcached:11211
django4geonode_water  | FORCE_REINIT=false
django4geonode_water  | GEOSERVER_ADMIN_USER=admin
django4geonode_water  | GEONODE_DATABASE=geonode_water
django4geonode_water  | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
django4geonode_water  | DEFAULT_ANONYMOUS_VIEW_PERMISSION=True
django4geonode_water  | MONITORING_ENABLED=False
django4geonode_water  | GEONODE_LB_PORT=8000
django4geonode_water  | CORS_ALLOW_ALL_ORIGINS=True
django4geonode_water  | DOCKER_ENV=production
django4geonode_water  | DOCKER_API_VERSION=1.24
django4geonode_water  | GEOSERVER_WEB_UI_LOCATION=http://10.0.2.54/geoserver/
django4geonode_water  | LDAP_GROUP_SEARCH_DN=cn=groups,dc=ad,dc=example,dc=org
django4geonode_water  | POSTGRESQL_MAX_CONNECTIONS=200
django4geonode_water  | DEFAULT_FROM_EMAIL=None
django4geonode_water  | ACCOUNT_CONFIRM_EMAIL_ON_GET=False
django4geonode_water  | DEBUG=False
django4geonode_water  | MEDIA_ROOT=/mnt/volumes/statics/uploaded/
django4geonode_water  | OAUTH2_CLIENT_SECRET=Qxocry2guRodQHv
django4geonode_water  | SESSION_EXPIRED_CONTROL_ENABLED=True
django4geonode_water  | LDAP_SERVER_URL=ldap://<the_ldap_server>
django4geonode_water  | MONITORING_DATA_TTL=365
django4geonode_water  | Public Hostname or IP is django
django4geonode_water  | Public PORT is 8000
django4geonode_water  | Can not delete the $HOME/.override_env file as it doesn't exists
django4geonode_water  | ****************************finalize env**********************************
django4geonode_water  | ACCOUNT_EMAIL_CONFIRMATION_EMAIL=False
django4geonode_water  | MODIFY_TOPICCATEGORY=True
django4geonode_water  | LDAP_USER_SEARCH_FILTERSTR=(&(uid=%(user)s)(objectClass=person))
django4geonode_water  | X_FRAME_OPTIONS=SAMEORIGIN
django4geonode_water  | RESTART_POLICY_MAX_ATTEMPTS=3
django4geonode_water  | ASYNC_SIGNALS=True
django4geonode_water  | GEONODE_DATABASE_USER=geonode_water
django4geonode_water  | DJANGO_EMAIL_USE_SSL=False
django4geonode_water  | OGC_REQUEST_POOL_CONNECTIONS=10
django4geonode_water  | DATABASE_URL=postgis://geonode_water:water@db:5432/geonode_water
django4geonode_water  | OAUTH2_API_KEY=
django4geonode_water  | OGC_REQUEST_MAX_RETRIES=1
django4geonode_water  | GEOSERVER_LB_HOST_IP=geoserver
django4geonode_water  | POSTGRES_BASE_IMAGE_VERSION=15.3-latest
django4geonode_water  | ADMIN_USERNAME=admin
django4geonode_water  | API_LOCKDOWN=False
django4geonode_water  | HOSTNAME=a7bbfd67cc03
django4geonode_water  | AUTO_ASSIGN_REGISTERED_MEMBERS_TO_REGISTERED_MEMBERS_GROUP_NAME=True
django4geonode_water  | DJANGO_EMAIL_HOST=localhost
django4geonode_water  | ENABLE_JSONP=true
django4geonode_water  | POSTGRES_PASSWORD=water
django4geonode_water  | TIME_ENABLED=True
django4geonode_water  | CENTRALIZED_DASHBOARD_ENABLED=False
django4geonode_water  | GEOSERVER_CORS_ALLOWED_ORIGINS=*
django4geonode_water  | GEONODE_GEODATABASE_USER=geonode_water_data
django4geonode_water  | AVATAR_GRAVATAR_SSL=True
django4geonode_water  | ALLOWED_HOSTS=['django', '10.0.2.54']
django4geonode_water  | MONITORING_SERVICE_NAME=local-geonode
django4geonode_water  | FAVORITE_ENABLED=True
django4geonode_water  | USER_ANALYTICS_GZIP=True
django4geonode_water  | GEONODE_BASE_IMAGE_VERSION=master
django4geonode_water  | CELERY_BEAT_SCHEDULER=celery.beat:PersistentScheduler
django4geonode_water  | MEMCACHED_LOCK_EXPIRE=3600
django4geonode_water  | RESTART_POLICY_WINDOW=120s
django4geonode_water  | C_FORCE_ROOT=1
django4geonode_water  | CACHE_BUSTING_STATIC_ENABLED=False
django4geonode_water  | MOSAIC_ENABLED=False
django4geonode_water  | DEFAULT_BACKEND_UPLOADER=geonode.importer
django4geonode_water  | EXIF_ENABLED=True
django4geonode_water  | COMPOSE_PROJECT_NAME=geonode_water
django4geonode_water  | LOCKDOWN_GEONODE=False
django4geonode_water  | LDAP_GROUP_SEARCH_FILTERSTR=(|(cn=abt1)(cn=abt2)(cn=abt3)(cn=abt4)(cn=abt5)(cn=abt6))
django4geonode_water  | MAX_DOCUMENT_SIZE=200
django4geonode_water  | RESTART_POLICY_DELAY=5s
django4geonode_water  | RESOLVER=127.0.0.11
django4geonode_water  | LDAP_USER_SEARCH_DN=dc=ad,dc=example,dc=org
django4geonode_water  | NGINX_BASE_URL=http://10.0.2.54
django4geonode_water  | MEMCACHED_BACKEND=django.core.cache.backends.memcached.MemcachedCache
django4geonode_water  | MEMCACHED_OPTIONS=
django4geonode_water  | PWD=/usr/src/geonode_water
django4geonode_water  | GEOSERVER_CORS_ALLOWED_METHODS=GET,POST,PUT,DELETE,HEAD,OPTIONS
django4geonode_water  | BING_API_KEY=
django4geonode_water  | ACCOUNT_AUTHENTICATION_METHOD=username_email
django4geonode_water  | MEMCACHED_LOCK_TIMEOUT=10
django4geonode_water  | HAYSTACK_ENGINE_INDEX_NAME=haystack
django4geonode_water  | OGC_REQUEST_TIMEOUT=30
django4geonode_water  | GEOSERVER_CORS_ALLOWED_HEADERS=*
django4geonode_water  | DJANGO_EMAIL_PORT=25
django4geonode_water  | DEFAULT_ANONYMOUS_DOWNLOAD_PERMISSION=True
django4geonode_water  | STATIC_ROOT=/mnt/volumes/statics/static/
django4geonode_water  | ADMIN_MODERATE_UPLOADS=False
django4geonode_water  | _=/usr/bin/env
django4geonode_water  | LETSENCRYPT_BASE_IMAGE_VERSION=2.6.0-latest
django4geonode_water  | GEONODE_DB_CONN_MAX_AGE=0
django4geonode_water  | TASTYPIE_APIKEY=
django4geonode_water  | BROKER_URL=amqp://guest:guest@rabbitmq:5672/
django4geonode_water  | ADMIN_EMAIL=None
django4geonode_water  | HOME=/root
django4geonode_water  | LANG=C.UTF-8
django4geonode_water  | HTTP_PORT=80
django4geonode_water  | RESOURCE_PUBLISHING=False
django4geonode_water  | DEFAULT_BACKEND_DATASTORE=datastore
django4geonode_water  | CLIENT_RESULTS_LIMIT=5
django4geonode_water  | outFormat=text/javascript
django4geonode_water  | MAPBOX_ACCESS_TOKEN=
django4geonode_water  | HAYSTACK_ENGINE_URL=http://elasticsearch:9200/
django4geonode_water  | BACKUPS_VOLUME_DRIVER=local
django4geonode_water  | SECRET_KEY=E~+IcXeL|7/&\n@=uM>UvZh,T&9N<98g_DHmd6D:I@WQRa|Br(
django4geonode_water  | LDAP_BIND_DN=uid=ldapinfo,cn=users,dc=ad,dc=example,dc=org
django4geonode_water  | ADMIN_PASSWORD=water
django4geonode_water  | DATABASE_PORT=5432
django4geonode_water  | GEONODE_DATABASE_SCHEMA=public
django4geonode_water  | ACCOUNT_OPEN_SIGNUP=True
django4geonode_water  | DJANGO_EMAIL_HOST_PASSWORD=
django4geonode_water  | DEFAULT_MAX_UPLOAD_SIZE=5368709120
django4geonode_water  | HAYSTACK_SEARCH_RESULTS_PER_PAGE=200
django4geonode_water  | DJANGO_SETTINGS_MODULE=geonode_water.settings
django4geonode_water  | GEOSERVER_JAVA_OPTS=-Djava.awt.headless=true -Xms4G -Xmx4G -Dgwc.context.suffix=gwc -XX:+UnlockDiagnosticVMOptions -XX:+LogVMOutput -XX:LogFile=/var/log/jvm.log -XX:PerfDataSamplingInterval=500 -XX:SoftRefLRUPolicyMSPerMB=36000 -XX:-UseGCOverheadLimit -XX:ParallelGCThreads=4 -Dfile.encoding=UTF8 -Djavax.servlet.request.encoding=UTF-8 -Djavax.servlet.response.encoding=UTF-8 -Duser.timezone=GMT -Dorg.geotools.shapefile.datetime=false -DGS-SHAPEFILE-CHARSET=UTF-8 -DGEOSERVER_CSRF_DISABLED=true -DPRINT_BASE_URL=http://10.0.2.54/geoserver/pdf -DALLOW_ENV_PARAMETRIZATION=true -Xbootclasspath/a:/usr/local/tomcat/webapps/geoserver/WEB-INF/lib/marlin-0.9.3-Unsafe.jar -Dsun.java2d.renderer=org.marlin.pisces.MarlinRenderingEngine
django4geonode_water  | GEOSERVER_LB_PORT=8080
django4geonode_water  | ACCOUNT_EMAIL_REQUIRED=True
django4geonode_water  | ACCOUNT_APPROVAL_REQUIRED=False
django4geonode_water  | SITEURL=http://10.0.2.54/
django4geonode_water  | MEMCACHED_ENABLED=False
django4geonode_water  | GEONODE_LB_HOST_IP=django
django4geonode_water  | LDAP_ENABLED=False
django4geonode_water  | OAUTH2_CLIENT_ID=v8Igz94In7fOc4V
django4geonode_water  | API_LIMIT_PER_PAGE=1000
django4geonode_water  | USER_ANALYTICS_ENABLED=True
django4geonode_water  | DJANGO_EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
django4geonode_water  | GEOSERVER_LOCATION=http://geoserver:8080/geoserver/
django4geonode_water  | LDAP_BIND_PASSWORD=<something_secret>
django4geonode_water  | DEFAULT_MAX_PARALLEL_UPLOADS_PER_USER=5
django4geonode_water  | ACCOUNT_EMAIL_VERIFICATION=none
django4geonode_water  | GEONODE_GEODATABASE_SCHEMA=public
django4geonode_water  | HTTP_HOST=10.0.2.54
django4geonode_water  | HAYSTACK_SEARCH=False
django4geonode_water  | GEONODE_INSTANCE_NAME=geonode
django4geonode_water  | NGINX_BASE_IMAGE_VERSION=1.25.3-latest
django4geonode_water  | EMAIL_ENABLE=False
django4geonode_water  | LETSENCRYPT_MODE=disabled
django4geonode_water  | HTTPS_PORT=443
django4geonode_water  | SHLVL=1
django4geonode_water  | HTTPS_HOST=
django4geonode_water  | OGC_REQUEST_POOL_MAXSIZE=10
django4geonode_water  | POSTGRES_USER=postgres
django4geonode_water  | ACCOUNT_EMAIL_CONFIRMATION_REQUIRED=False
django4geonode_water  | GEODATABASE_URL=postgis://geonode_water_data:water@db:5432/geonode_water_data
django4geonode_water  | GEOSERVER_DATA_BASE_IMAGE_VERSION=2.24.3-latest
django4geonode_water  | LDAP_GROUP_PROFILE_MEMBER_ATTR=uniqueMember
django4geonode_water  | DJANGO_EMAIL_USE_TLS=False
django4geonode_water  | RESTART_POLICY_CONDITION=on-failure
django4geonode_water  | DJANGO_EMAIL_HOST_USER=
django4geonode_water  | MONITORING_HOST_NAME=geonode
django4geonode_water  | GEONODE_GEODATABASE_PASSWORD=water
django4geonode_water  | IS_CELERY=False
django4geonode_water  | GEONODE_DATABASE_PASSWORD=water
django4geonode_water  | DATABASE_HOST=db
django4geonode_water  | GEOSERVER_PUBLIC_LOCATION=http://10.0.2.54/geoserver/
django4geonode_water  | GEONODE_DB_CONN_TOUT=5
django4geonode_water  | CREATE_LAYER=True
django4geonode_water  | GEOSERVER_ADMIN_PASSWORD=water
django4geonode_water  | INVOKE_LOG_STDOUT=true
django4geonode_water  | GEOSERVER_CORS_ENABLED=True
django4geonode_water  | GOOGLE_API_KEY=
django4geonode_water  | GEOIP_PATH=/mnt/volumes/statics/geoip.db
django4geonode_water  | LC_ALL=C.UTF-8
django4geonode_water  | GEOSERVER_BASE_IMAGE_VERSION=2.24.3-latest
django4geonode_water  | GEONODE_CLIENT_LAYER_PREVIEW_LIBRARY=mapstore
django4geonode_water  | GEONODE_GEODATABASE=geonode_water_data
django4geonode_water  | OGC_REQUEST_BACKOFF_FACTOR=0.3
django4geonode_water  | MEMCACHED_LOCATION=memcached:11211
django4geonode_water  | FORCE_REINIT=false
django4geonode_water  | GEOSERVER_ADMIN_USER=admin
django4geonode_water  | GEONODE_DATABASE=geonode_water
django4geonode_water  | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
django4geonode_water  | DEFAULT_ANONYMOUS_VIEW_PERMISSION=True
django4geonode_water  | MONITORING_ENABLED=False
django4geonode_water  | GEONODE_LB_PORT=8000
django4geonode_water  | CORS_ALLOW_ALL_ORIGINS=True
django4geonode_water  | DOCKER_ENV=production
django4geonode_water  | DOCKER_API_VERSION=1.24
django4geonode_water  | GEOSERVER_WEB_UI_LOCATION=http://10.0.2.54/geoserver/
django4geonode_water  | LDAP_GROUP_SEARCH_DN=cn=groups,dc=ad,dc=example,dc=org
django4geonode_water  | POSTGRESQL_MAX_CONNECTIONS=200
django4geonode_water  | DEFAULT_FROM_EMAIL=None
django4geonode_water  | ACCOUNT_CONFIRM_EMAIL_ON_GET=False
django4geonode_water  | DEBUG=False
django4geonode_water  | MEDIA_ROOT=/mnt/volumes/statics/uploaded/
django4geonode_water  | OAUTH2_CLIENT_SECRET=Qxocry2guRodQHv
django4geonode_water  | SESSION_EXPIRED_CONTROL_ENABLED=True
django4geonode_water  | LDAP_SERVER_URL=ldap://<the_ldap_server>
django4geonode_water  | MONITORING_DATA_TTL=365
django4geonode_water  | update tasks done
django4geonode_water  | DOCKER_API_VERSION=1.24
django4geonode_water  | POSTGRES_USER=postgres
django4geonode_water  | POSTGRES_PASSWORD=water
django4geonode_water  | DATABASE_URL=postgis://geonode_water:water@db:5432/geonode_water
django4geonode_water  | GEODATABASE_URL=postgis://geonode_water_data:water@db:5432/geonode_water_data
django4geonode_water  | SITEURL=http://10.0.2.54/
django4geonode_water  | ALLOWED_HOSTS=['django', '10.0.2.54', 'django', 'django:8000', 'geonode', 'django']
django4geonode_water  | GEOSERVER_PUBLIC_LOCATION=http://10.0.2.54/geoserver/
django4geonode_water  | MONITORING_ENABLED=False
django4geonode_water  | MONITORING_HOST_NAME=geonode
django4geonode_water  | MONITORING_SERVICE_NAME=local-geonode
django4geonode_water  | MONITORING_DATA_TTL=365
django4geonode_water  | **************************migrations*******************************
django4geonode_water  | Operations to perform:
django4geonode_water  |   Apply all migrations: account, actstream, admin, announcements, auth, avatar, base, br, contenttypes, django_celery_results, documents, dynamic_models, favorite, geoapps, geonode_client, geonode_mapstore_client, geonode_resource_processing, geonode_themes, groups, guardian, harvesting, importer, invitations, layers, management_commands_http, maps, monitoring, oauth2_provider, people, pinax_notifications, processing, resource, sequences, services, sessions, sites, socialaccount, taggit, tastypie, upload, user_messages
django4geonode_water  | Running migrations:
django4geonode_water  |   Applying contenttypes.0001_initial... OK
django4geonode_water  |   Applying taggit.0001_initial... OK
django4geonode_water  |   Applying taggit.0002_auto_20150616_2121... OK
django4geonode_water  |   Applying contenttypes.0002_remove_content_type_name... OK
django4geonode_water  |   Applying auth.0001_initial... OK
django4geonode_water  |   Applying auth.0002_alter_permission_name_max_length... OK
django4geonode_water  |   Applying auth.0003_alter_user_email_max_length... OK
django4geonode_water  |   Applying auth.0004_alter_user_username_opts... OK
django4geonode_water  |   Applying auth.0005_alter_user_last_login_null... OK
django4geonode_water  |   Applying auth.0006_require_contenttypes_0002... OK
django4geonode_water  |   Applying people.24_initial... OK
django4geonode_water  |   Applying account.0001_initial... OK
django4geonode_water  |   Applying account.0002_email_max_length... OK
django4geonode_water  |   Applying account.0003_alter_emailaddress_create_unique_verified_email... OK
django4geonode_water  |   Applying account.0004_alter_emailaddress_drop_unique_email... OK
django4geonode_water  |   Applying account.0005_emailaddress_idx_upper_email... OK
django4geonode_water  |   Applying actstream.0001_initial... OK
django4geonode_water  |   Applying actstream.0002_remove_action_data... OK
django4geonode_water  |   Applying actstream.0003_add_follow_flag... OK
django4geonode_water  |   Applying admin.0001_initial... OK
django4geonode_water  |   Applying admin.0002_logentry_remove_auto_add... OK
django4geonode_water  |   Applying admin.0003_logentry_add_action_flag_choices... OK
django4geonode_water  |   Applying announcements.0001_initial... OK
django4geonode_water  |   Applying announcements.0002_auto_20200311_0959... OK
django4geonode_water  |   Applying auth.0007_alter_validators_add_error_messages... OK
django4geonode_water  |   Applying auth.0008_alter_user_username_max_length... OK
django4geonode_water  |   Applying auth.0009_alter_user_last_name_max_length... OK
django4geonode_water  |   Applying auth.0010_alter_group_name_max_length... OK
django4geonode_water  |   Applying auth.0011_update_proxy_permissions... OK
django4geonode_water  |   Applying auth.0012_alter_user_first_name_max_length... OK
django4geonode_water  |   Applying avatar.0001_initial... OK
django4geonode_water  |   Applying avatar.0002_add_verbose_names_to_avatar_fields... OK
django4geonode_water  |   Applying avatar.0003_auto_20170827_1345... OK
django4geonode_water  |   Applying base.24_initial... OK
django4geonode_water  |   Applying layers.24_initial... OK
django4geonode_water  |   Applying upload.24_initial... OK
django4geonode_water  |   Applying upload.0025_auto_20200115_1836... OK
django4geonode_water  |   Applying upload.0026_auto_20200321_1349... OK
django4geonode_water  |   Applying upload.0027_auto_20210329_1348... OK
django4geonode_water  |   Applying upload.0028_upload_append_to_mosaic_opts... OK
django4geonode_water  |   Applying upload.0029_auto_20210329_1458... OK
django4geonode_water  |   Applying upload.0030_upload_create_date... OK
django4geonode_water  |   Applying upload.0031_upload_resume_url... OK
django4geonode_water  |   Applying upload.0032_uploadsizelimit... OK
django4geonode_water  |   Applying upload.0033_upload_store_spatial_files... OK
django4geonode_water  |   Applying services.24_initial... OK
django4geonode_water  |   Applying services.0025_harvestjob... OK
django4geonode_water  |   Applying services.0026_auto_20171130_0600_squashed_0041_auto_20190404_0820... OK
django4geonode_water  |   Applying layers.24_to_26... OK
django4geonode_water  |   Applying layers.26_to_27... OK
django4geonode_water  |   Applying base.24_to_26... OK
django4geonode_water  |   Applying base.26_to_27... OK
django4geonode_water  |   Applying base.0027_auto_20170801_1228_squashed_0037_auto_20190222_1347... OK
django4geonode_water  |   Applying layers.0027_auto_20170801_1228_squashed_0033_auto_20180606_1543... OK
django4geonode_water  |   Applying services.0027_auto_20190429_0831... OK
django4geonode_water  |   Applying services.0028_remove_service_last_updated... OK
django4geonode_water  |   Applying services.0029_remove_service_created... OK
django4geonode_water  |   Applying base.0028_curatedthumbnail... OK
django4geonode_water  |   Applying base.0029_resourcebase_last_updated... OK
django4geonode_water  |   Applying base.0030_resourcebase_created... OK
django4geonode_water  |   Applying base.0031_auto_20200114_1651... OK
django4geonode_water  |   Applying base.0032_auto_20200115_1121... OK
django4geonode_water  |   Applying base.0033_auto_20200115_1145... OK
django4geonode_water  |   Applying base.0034_auto_20200212_0410... OK
django4geonode_water  |   Applying base.0035_auto_20200212_0428... OK
django4geonode_water  |   Applying base.0036_resourcebase_doi... OK
django4geonode_water  |   Applying base.0037_auto_20200305_1520... OK
django4geonode_water  |   Applying base.0038_configuration... OK
django4geonode_water  |   Applying base.0039_auto_20200321_1338... OK
django4geonode_water  |   Applying base.0038_delete_backup... OK
django4geonode_water  |   Applying base.0040_merge_20200321_2245... OK
django4geonode_water  |   Applying groups.24_initial... OK
django4geonode_water  |   Applying groups.26_to_27... OK
django4geonode_water  |   Applying groups.0027_auto_20180105_1631_squashed_0028_auto_20180606_1543... OK
django4geonode_water  |   Applying groups.0028_auto_20200114_1651... OK
django4geonode_water  |   Applying groups.0029_auto_20200115_1121... OK
django4geonode_water  |   Applying groups.0030_auto_20200221_1107... OK
django4geonode_water  |   Applying groups.0031_auto_20200305_1522... OK
django4geonode_water  |   Applying groups.0031_auto_20200304_1434... OK
django4geonode_water  |   Applying groups.0032_merge_20200306_1153... OK
django4geonode_water  |   Applying base.0038_auto_20200318_0953... OK
django4geonode_water  |   Applying base.0041_merge_20200323_1119... OK
django4geonode_water  |   Applying base.0042_auto_20200414_1554... OK
django4geonode_water  |   Applying base.0043_auto_20200527_0833... OK
django4geonode_water  |   Applying base.0044_resourcebase_bbox_polygon... OK
django4geonode_water  |   Applying layers.0028_auto_20200323_1945... OK
django4geonode_water  |   Applying base.0045_auto_20200507_0445... OK
django4geonode_water  |   Applying base.0044_auto_20201001_1514... OK
django4geonode_water  |   Applying base.0046_merge_20201016_0937... OK
django4geonode_water  |   Applying base.0047_resourcebase_attribution... OK
django4geonode_water  |   Applying base.0048_auto_20201116_0914... OK
django4geonode_water  |   Applying base.0049_resourcebase_resource_type... OK
django4geonode_water  |   Applying base.0050_auto_20210201_1008... OK
django4geonode_water  |   Applying base.0051_auto_20210202_1656... OK
django4geonode_water  |   Applying base.0052_auto_20210205_1631... OK
django4geonode_water  |   Applying base.0053_auto_20210223_0905... OK
django4geonode_water  |   Applying base.0054_auto_20210223_1202... OK
django4geonode_water  |   Applying base.0055_auto_20210302_1109... OK
django4geonode_water  |   Applying base.0056_resourcebase_ll_bbox_polygon... OK
django4geonode_water  |   Applying base.0057_resourcebase_metadata_only... OK
django4geonode_water  |   Applying base.0058_thesaurus_order... OK
django4geonode_water  |   Applying base.0059_fill_empty_resource_type... OK
django4geonode_water  |   Applying base.0060_auto_20210512_1658... OK
django4geonode_water  |   Applying base.0061_auto_20211117_1238... OK
django4geonode_water  |   Applying base.0062_resourcebase_extra_metadata... OK
django4geonode_water  |   Applying base.0063_auto_20220128_1042... OK
django4geonode_water  |   Applying base.0064_resourcebase_metadata... OK
django4geonode_water  |   Applying base.0060_resourcebase_state... OK
django4geonode_water  |   Applying base.0061_merge_0060_auto_20210512_1658_0060_resourcebase_state... OK
django4geonode_water  |   Applying base.0062_resourcebase_files... OK
django4geonode_water  |   Applying upload.0033_auto_20210527_1520... OK
django4geonode_water  |   Applying upload.0033_auto_20210528_1556... OK
django4geonode_water  |   Applying upload.0033_auto_20210531_1252... OK
django4geonode_water  |   Applying services.0030_auto_20200115_1121... OK
django4geonode_water  |   Applying services.0031_service_probe... OK
django4geonode_water  |   Applying services.0042_update_metadata_only... OK
django4geonode_water  |   Applying services.0043_auto_20210519_1308... OK
django4geonode_water  |   Applying services.0044_auto_20210628_0955... OK
django4geonode_water  |   Applying services.0045_auto_20210629_1355... OK
django4geonode_water  |   Applying layers.0028_auto_20200610_0759... OK
django4geonode_water  |   Applying layers.0029_auto_20200610_0803... OK
django4geonode_water  |   Applying layers.0030_auto_20200610_0825... OK
django4geonode_water  |   Applying layers.0031_auto_20200612_1533... OK
django4geonode_water  |   Applying layers.0032_auto_20200612_1544... OK
django4geonode_water  |   Applying layers.0033_merge_20200618_2150... OK
django4geonode_water  |   Applying layers.0034_auto_20210329_1458... OK
django4geonode_water  |   Applying layers.0035_auto_20210525_0847... OK
django4geonode_water  |   Applying documents.24_initial... OK
django4geonode_water  |   Applying base.0063_alter_resourcebase_files... OK
django4geonode_water  |   Applying base.0064_alter_resourcebase_files... OK
django4geonode_water  |   Applying base.0065_alter_curatedthumbnail_img... OK
django4geonode_water  |   Applying base.0066_resourcebase_data... OK
django4geonode_water  |   Applying base.0067_resourcebase_storetype... OK
django4geonode_water  |   Applying layers.0036_remove_layer_storetype... OK
django4geonode_water  |   Applying base.0068_rename_storetype_resourcebase_subtype... OK
django4geonode_water  |   Applying base.0069_resourcebase_sourcetype... OK
django4geonode_water  |   Applying base.0070_auto_20210720_1709... OK
django4geonode_water  |   Applying layers.0037_layer_ptype... OK
django4geonode_water  |   Applying harvesting.0001_initial... OK
django4geonode_water  |   Applying harvesting.0002_auto_20210415_1719... OK
django4geonode_water  |   Applying harvesting.0003_harvestingsession_total_records_found... OK
django4geonode_water  |   Applying harvesting.0004_auto_20210428_1055... OK
django4geonode_water  |   Applying harvesting.0005_auto_20210428_1100... OK
django4geonode_water  |   Applying harvesting.0006_harvester_availability_check_task... OK
django4geonode_water  |   Applying harvesting.0007_auto_20210519_1034... OK
django4geonode_water  |   Applying harvesting.0008_auto_20210519_1055... OK
django4geonode_water  |   Applying harvesting.0009_auto_20210519_1638... OK
django4geonode_water  |   Applying harvesting.0010_harvestableresource_should_be_harvested... OK
django4geonode_water  |   Applying harvesting.0011_harvester_status... OK
django4geonode_water  |   Applying harvesting.0012_auto_20210520_2055... OK
django4geonode_water  |   Applying harvesting.0013_auto_20210520_2159... OK
django4geonode_water  |   Applying harvesting.0014_auto_20210526_1521... OK
django4geonode_water  |   Applying harvesting.0015_harvestableresource_status... OK
django4geonode_water  |   Applying harvesting.0016_harvestableresource_remote_resource_type... OK
django4geonode_water  |   Applying harvesting.0017_auto_20210614_1530... OK
django4geonode_water  |   Applying harvesting.0018_auto_20210614_1733... OK
django4geonode_water  |   Applying harvesting.0019_auto_20210614_1735... OK
django4geonode_water  |   Applying harvesting.0020_alter_harvester_default_access_permissions... OK
django4geonode_water  |   Applying harvesting.0021_alter_harvester_default_access_permissions... OK
django4geonode_water  |   Applying harvesting.0022_alter_harvester_default_access_permissions... OK
django4geonode_water  |   Applying harvesting.0023_harvestableresource_last_refreshed... OK
django4geonode_water  |   Applying harvesting.0024_remove_harvestableresource_available... OK
django4geonode_water  |   Applying harvesting.0025_auto_20210624_1459... OK
django4geonode_water  |   Applying harvesting.0026_harvestableresource_last_harvesting_succeeded... OK
django4geonode_water  |   Applying layers.0038_rename_layer_dataset... OK
django4geonode_water  |   Applying layers.0039_auto_20210720_1311... OK
django4geonode_water  |   Applying base.0071_remove_resourcebase_ows_url... OK
django4geonode_water  |   Applying layers.0040_dataset_ows_url... OK
django4geonode_water  |   Applying layers.0041_uodate_resource_type_field... OK
django4geonode_water  |   Applying layers.0042_alter_dataset_options... OK
django4geonode_water  |   Applying layers.0043_auto_20220225_1605... OK
django4geonode_water  |   Applying layers.0044_alter_dataset_unique_together... OK
django4geonode_water  |   Applying base.0072_remove_resourcebase_detail_url... OK
django4geonode_water  |   Applying base.0073_resourcebase_thumbnail_path... OK
django4geonode_water  |   Applying base.0074_drop_curated_thumbs... OK
django4geonode_water  |   Applying base.0075_delete_curatedthumbnail... OK
django4geonode_water  |   Applying base.0076_merge_20220204_1339... OK
django4geonode_water  |   Applying base.0076_auto_20220128_0919... OK
django4geonode_water  |   Applying base.0077_merge_20220204_1347... OK
django4geonode_water  |   Applying base.0078_alter_resourcebase_metadata... OK
django4geonode_water  |   Applying base.0079_alter_resourcebase_alternate... OK
django4geonode_water  |   Applying base.0080_alter_resourcebase_uuid... OK
django4geonode_water  |   Applying base.0081_alter_resourcebase_alternate... OK
django4geonode_water  |   Applying base.0082_remove_dialogos_comment... OK
django4geonode_water  |   Applying base.0083_clean_resources_with_missing_thumb... OK
django4geonode_water  |   Applying base.0084_remove_comments_from_actions... OK
django4geonode_water  |   Applying base.0085_alter_resourcebase_uuid... OK
django4geonode_water  |   Applying base.0086_linkedresource... OK
django4geonode_water  |   Applying base.0087_thesauruskeyword_icon... OK
django4geonode_water  |   Applying base.0088_auto_20231019_1244... OK
django4geonode_water  |   Applying base.0089_resourcebase_advertised... OK
django4geonode_water  |   Applying base.0090_alter_resourcebase_polymorphic_ctype... OK
django4geonode_water  |   Applying br.0001_initial... OK
django4geonode_water  |   Applying django_celery_results.0001_initial... OK
django4geonode_water  |   Applying django_celery_results.0002_add_task_name_args_kwargs... OK
django4geonode_water  |   Applying django_celery_results.0003_auto_20181106_1101... OK
django4geonode_water  |   Applying django_celery_results.0004_auto_20190516_0412... OK
django4geonode_water  |   Applying django_celery_results.0005_taskresult_worker... OK
django4geonode_water  |   Applying django_celery_results.0006_taskresult_date_created... OK
django4geonode_water  |   Applying django_celery_results.0007_remove_taskresult_hidden... OK
django4geonode_water  |   Applying django_celery_results.0008_chordcounter... OK
django4geonode_water  |   Applying django_celery_results.0009_groupresult... OK
django4geonode_water  |   Applying django_celery_results.0010_remove_duplicate_indices... OK
django4geonode_water  |   Applying django_celery_results.0011_taskresult_periodic_task_name... OK
django4geonode_water  |   Applying documents.25_add_documentresourcelink_table... OK
django4geonode_water  |   Applying documents.26_move_data_to_documentresourcelink_table... OK
django4geonode_water  |   Applying documents.27_drop_resource_columns_from_document_table... OK
django4geonode_water  |   Applying documents.0028_auto_20170801_1228_squashed_0035_auto_20190404_0820... OK
django4geonode_water  |   Applying documents.0029_auto_20190429_0831... OK
django4geonode_water  |   Applying documents.0030_auto_20200305_1520... OK
django4geonode_water  |   Applying documents.0031_auto_20201107_2241... OK
django4geonode_water  |   Applying documents.0032_remove_document_doc_file... OK
django4geonode_water  |   Applying documents.0033_remove_document_doc_type... OK
django4geonode_water  |   Applying documents.0036_clean_document_thumbnails... OK
django4geonode_water  |   Applying documents.0037_delete_documentresourcelink... OK
django4geonode_water  |   Applying documents.0038_alter_document_doc_url... OK
django4geonode_water  |   Applying dynamic_models.0001_initial... OK
django4geonode_water  |   Applying dynamic_models.0002_remove_modelschema__modified... OK
django4geonode_water  |   Applying dynamic_models.0003_add_classname_remove_datatype... OK
django4geonode_water  |   Applying dynamic_models.0004_modelschema_db_name... OK
django4geonode_water  |   Applying dynamic_models.0005_auto_20220621_0718... OK
django4geonode_water  |   Applying favorite.0001_initial... OK
django4geonode_water  |   Applying geoapps.0001_initial... OK
django4geonode_water  |   Applying geoapps.0002_auto_20210615_0717... OK
django4geonode_water  |   Applying geoapps.0003_update_detail_url... OK
django4geonode_water  |   Applying geoapps.0003_alter_geoapp_name... OK
django4geonode_water  |   Applying geoapps.0004_merge_0003_alter_geoapp_name_0003_update_detail_url... OK
django4geonode_water  |   Applying geoapps.0005_auto_20210705_1121... OK
django4geonode_water  |   Applying geoapps.0006_geoapp_blob_migration... OK
django4geonode_water  |   Applying geonode_client.0001_initial... OK
django4geonode_water  |   Applying geonode_client.0002_auto_20180412_1039_squashed_0005_auto_20181015_1201... OK
django4geonode_water  |   Applying maps.24_initial... OK
django4geonode_water  |   Applying maps.0025_auto_20170801_1228_squashed_0032_auto_20190404_0820... OK
django4geonode_water  |   Applying maps.0026_auto_20190429_0831... OK
django4geonode_water  |   Applying maps.0027_auto_20190516_0909... OK
django4geonode_water  |   Applying maps.0028_maplayer_store... OK
django4geonode_water  |   Applying maps.0029_delete_mapsnapshot... OK
django4geonode_water  |   Applying maps.0030_auto_20210506_0836... OK
django4geonode_water  |   Applying maps.0031_auto_20210615_0717... OK
django4geonode_water  |   Applying maps.0032_auto_20210714_1452... OK
django4geonode_water  |   Applying maps.0033_convert_map_blob... OK
django4geonode_water  |   Applying maps.0034_maplayer_extra_params_and_current_style... OK
django4geonode_water  |   Applying maps.0035_alter_maplayer_map... OK
django4geonode_water  |   Applying maps.0036_maplayer_dataset... OK
django4geonode_water  |   Applying maps.0037_datamigration_maplayer_dataset... OK
django4geonode_water  |   Applying maps.0038_alter_maplayer_map... OK
django4geonode_water  |   Applying maps.0039_set_legacy_fields_as_nullable... OK
django4geonode_water  |   Applying maps.0040_remove_maplayer_legacy_fields... OK
django4geonode_water  |   Applying maps.0041_remove_map_legacy_fields... OK
django4geonode_water  |   Applying maps.0042_remove_maplayer_styles... OK
django4geonode_water  |   Applying geonode_mapstore_client.0001_clean_prev_version_geoapps... OK
django4geonode_water  |   Applying geonode_mapstore_client.0002_migrate_map_blob... OK
django4geonode_water  |   Applying geonode_mapstore_client.0003_searchservice... OK
django4geonode_water  |   Applying geonode_mapstore_client.0004_auto_20231114_1705... OK
django4geonode_water  |   Applying geonode_resource_processing.0001_initial... OK
django4geonode_water  |   Applying geonode_resource_processing.0002_alter_processingworkflowtasks_options... OK
django4geonode_water  |   Applying geonode_resource_processing.0003_alter_abstractprocessingtask_polymorphic_ctype... OK
django4geonode_water  |   Applying geonode_themes.0001_initial... OK
django4geonode_water  |   Applying geonode_themes.0002_auto_20181015_1208_squashed_0003_remove_geonodethemecustomization_identifier... OK
django4geonode_water  |   Applying geonode_themes.0003_auto_20190503_1742... OK
django4geonode_water  |   Applying geonode_themes.0004_auto_20190503_1817... OK
django4geonode_water  |   Applying geonode_themes.0005_auto_20190510_1335... OK
django4geonode_water  |   Applying geonode_themes.0006_geonodethemecustomization_body_text_color... OK
django4geonode_water  |   Applying geonode_themes.0007_auto_20190510_1545... OK
django4geonode_water  |   Applying geonode_themes.0008_auto_20191122_1714... OK
django4geonode_water  |   Applying geonode_themes.0009_geonodethemecustomization_footer_bg_color... OK
django4geonode_water  |   Applying geonode_themes.0010_auto_20200115_1121... OK
django4geonode_water  |   Applying geonode_themes.0011_auto_20200727_1451... OK
django4geonode_water  |   Applying geonode_themes.0012_auto_20210716_1102... OK
django4geonode_water  |   Applying geonode_themes.0013_delete_partner... OK
django4geonode_water  |   Applying geonode_themes.0014_auto_20220214_0910... OK
django4geonode_water  |   Applying geonode_themes.0015_alter_geonodethemecustomization_is_enabled... OK
django4geonode_water  |   Applying groups.0033_auto_20200321_1349... OK
django4geonode_water  |   Applying groups.0034_auto_20200512_1431... OK
django4geonode_water  |   Applying guardian.0001_initial... OK
django4geonode_water  |   Applying guardian.0002_generic_permissions_index... OK
django4geonode_water  |   Applying harvesting.0027_remove_harvester_default_access_permissions... OK
django4geonode_water  |   Applying harvesting.0028_harvester_num_harvestable_resources... OK
django4geonode_water  |   Applying harvesting.0029_dynamic_harvester_type_choices... OK
django4geonode_water  |   Applying harvesting.0030_auto_20210917_1125... OK
django4geonode_water  |   Applying harvesting.0031_remove_harvestingsession_total_records_found... OK
django4geonode_water  |   Applying harvesting.0032_harvestingsession_session_details... OK
django4geonode_water  |   Applying harvesting.0033_alter_harvestingsession_status... OK
django4geonode_water  |   Applying harvesting.0034_harvester_unique name... OK
django4geonode_water  |   Applying harvesting.0035_replace_geonode_harvester_module_name... OK
django4geonode_water  |   Applying harvesting.0036_alter_harvester_harvester_type... OK
django4geonode_water  |   Applying harvesting.0037_alter_harvester_name... OK
django4geonode_water  |   Applying harvesting.0038_alter_harvester_status... OK
django4geonode_water  |   Applying harvesting.0039_harvestableresource_abstract... OK
django4geonode_water  |   Applying harvesting.0040_auto_20210927_1455... OK
django4geonode_water  |   Applying harvesting.0041_delete_harvestingsession... OK
django4geonode_water  |   Applying harvesting.0042_auto_20210930_1155... OK
django4geonode_water  |   Applying harvesting.0043_harvester_harvesting_session_update_frequency... OK
django4geonode_water  |   Applying harvesting.0044_migrate_harvester_harvesting_session_update_frequency... OK
django4geonode_water  |   Applying harvesting.0045_remove_harvester_update_frequency... OK
django4geonode_water  |   Applying harvesting.0046_alter_harvester_harvester_type... OK
django4geonode_water  |   Applying harvesting.0047_convert_geonode_harvesters_to_unified... OK
django4geonode_water  |   Applying harvesting.0048_alter_harvester_harvester_type... OK
django4geonode_water  |   Applying harvesting.0049_alter_harvester_harvester_type... OK
django4geonode_water  |   Applying resource.0001_initial... OK
django4geonode_water  |   Applying resource.0002_executionrequest_user... OK
django4geonode_water  |   Applying resource.0003_auto_20210719_1425... OK
django4geonode_water  |   Applying resource.0004_executionrequest_step... OK
django4geonode_water  |   Applying resource.0005_executionrequest_log... OK
django4geonode_water  |   Applying resource.0006_executionrequest_action... OK
django4geonode_water  |   Applying resource.0007_alter_executionrequest_action... OK
django4geonode_water  |   Applying importer.0001_initial... OK
django4geonode_water  |   Applying importer.0002_resourcehandlerinfo_kwargs... OK
django4geonode_water  |   Applying importer.0003_resourcehandlerinfo_execution_id... OK
django4geonode_water  |   Applying importer.0004_rename_execution_id_resourcehandlerinfo_execution_request... OK
django4geonode_water  |   Applying importer.0005_fixup_dynamic_shema_table_names... OK
django4geonode_water  |   Applying importer.0006_dataset_migration... OK
django4geonode_water  |   Applying invitations.0001_initial... OK
django4geonode_water  |   Applying invitations.0002_auto_20151126_0426... OK
django4geonode_water  |   Applying invitations.0003_auto_20151126_1523... OK
django4geonode_water  |   Applying invitations.0004_auto_20230328_1430... OK
django4geonode_water  |   Applying management_commands_http.0001_initial... OK
django4geonode_water  |   Applying maps.0043_auto_20230807_1234... OK
django4geonode_water  |   Applying monitoring.0001_monitoring_init... OK
django4geonode_water  |   Applying monitoring.0002_monitoring_update... OK
django4geonode_water  |   Applying monitoring.0003_monitoring_resources... OK
django4geonode_water  |   Applying monitoring.0004_monitoring_metric_type... OK
django4geonode_water  |   Applying monitoring.0005_monitoring_ows_service... OK
django4geonode_water  |   Applying monitoring.0006_monitoring_path_text... OK
django4geonode_water  |   Applying monitoring.0007_monitoring_exception_message... OK
django4geonode_water  |   Applying monitoring.0008_monitoring_notifications_check... OK
django4geonode_water  |   Applying monitoring.0009_sample_count... OK
django4geonode_water  |   Applying monitoring.0010_metric_unit... OK
django4geonode_water  |   Applying monitoring.0011_notification_def... OK
django4geonode_water  |   Applying monitoring.0012_notifications_service... OK
django4geonode_water  |   Applying monitoring.0013_notifications_def_description... OK
django4geonode_water  |   Applying monitoring.0014_notifications_emails... OK
django4geonode_water  |   Applying monitoring.0015_notification_grace_period... OK
django4geonode_water  |   Applying monitoring.0016_notification_severity... OK
django4geonode_water  |   Applying monitoring.0017_monitoring_notification_active... OK
django4geonode_water  |   Applying monitoring.0018_notification_check_def... OK
django4geonode_water  |   Applying monitoring.0019_notification_check_def_link... OK
django4geonode_water  |   Applying monitoring.0020_metric_description... OK
django4geonode_water  |   Applying monitoring.0021_auto_20180301_0932... OK
django4geonode_water  |   Applying monitoring.0022_service_last_check_default... OK
django4geonode_water  |   Applying monitoring.0023_auto_20190528_0906... OK
django4geonode_water  |   Applying monitoring.0024_auto_20190605_1619... OK
django4geonode_water  |   Applying monitoring.0025_auto_20190813_0808... OK
django4geonode_water  |   Applying monitoring.0026_auto_20190821_0736... OK
django4geonode_water  |   Applying monitoring.0027_monitoredresource_resource_id... OK
django4geonode_water  |   Applying monitoring.0028_auto_20190830_1018... OK
django4geonode_water  |   Applying monitoring.0029_auto_20200115_1121... OK
django4geonode_water  |   Applying monitoring.0030_auto_20200305_1520... OK
django4geonode_water  |   Applying monitoring.0031_auto_20201012_0931... OK
django4geonode_water  |   Applying monitoring.0032_alter_monitoredresource_type... OK
django4geonode_water  |   Applying monitoring.0033_alter_monitoredresource_type... OK
django4geonode_water  |   Applying monitoring.0034_alter_notificationcheck_metrics... OK
django4geonode_water  |   Applying oauth2_provider.0001_initial... OK
django4geonode_water  |   Applying oauth2_provider.0002_08_updates... OK
django4geonode_water  |   Applying oauth2_provider.0003_auto_20160316_1503... OK
django4geonode_water  |   Applying oauth2_provider.0004_auto_20160525_1623... OK
django4geonode_water  |   Applying oauth2_provider.0005_auto_20170514_1141... OK
django4geonode_water  |   Applying oauth2_provider.0006_auto_20170903_1632... OK
django4geonode_water  |   Applying oauth2_provider.0007_application_algorithm... OK
django4geonode_water  |   Applying oauth2_provider.0008_idtoken... OK
django4geonode_water  |   Applying oauth2_provider.0006_auto_20171214_2232... OK
django4geonode_water  |   Applying oauth2_provider.0009_merge_20180606_1314... OK
django4geonode_water  |   Applying oauth2_provider.0010_auto_20190406_1805... OK
django4geonode_water  |   Applying oauth2_provider.0011_auto_20190413_2007... OK
django4geonode_water  |   Applying oauth2_provider.0012_accesstoken_id_token... OK
django4geonode_water  |   Applying oauth2_provider.0013_auto_20190816_1714... OK
django4geonode_water  |   Applying oauth2_provider.0014_auto_20210510_0935... OK
django4geonode_water  |   Applying oauth2_provider.0015_fix_uuid_20210527_1930... OK
django4geonode_water  |   Applying oauth2_provider.0016_alter_accesstoken_user_alter_application_user_and_more... OK
django4geonode_water  |   Applying people.0025_auto_20170924_0932_squashed_0028_auto_20180606_1543... OK
django4geonode_water  |   Applying people.0026_auto_20200109_1600... OK
django4geonode_water  |   Applying people.0027_auto_20200114_1651... OK
django4geonode_water  |   Applying people.0028_auto_20200115_1121... OK
django4geonode_water  |   Applying people.0029_auto_20201216_1335... OK
django4geonode_water  |   Applying people.0030_auto_20210201_0953... OK
django4geonode_water  |   Applying people.0030_auto_20210118_1112... OK
django4geonode_water  |   Applying people.0031_merge_20210205_0824... OK
django4geonode_water  |   Applying people.0032_set_contributors_group... OK
django4geonode_water  |   Applying people.0033_alter_profile_first_name... OK
django4geonode_water  |   Applying people.0034_auto_20210519_1308... OK
django4geonode_water  |   Applying people.0035_alter_profile_first_name... OK
django4geonode_water  |   Applying people.0033_set_contributors_permissions... OK
django4geonode_water  |   Applying people.0036_merge_20210706_0951... OK
django4geonode_water  |   Applying pinax_notifications.0001_initial... OK
django4geonode_water  |   Applying pinax_notifications.0002_auto_20171003_2006... OK
django4geonode_water  |   Applying processing.0001_initial... OK
django4geonode_water  |   Applying resource.0008_executionrequest_source... OK
django4geonode_water  |   Applying sequences.0001_initial... OK
django4geonode_water  |   Applying sequences.0002_alter_sequence_last... OK
django4geonode_water  |   Applying services.0046_auto_20210903_1427... OK
django4geonode_water  |   Applying services.0048_service_harvester... OK
django4geonode_water  |   Applying services.0049_remove_service_probe... OK
django4geonode_water  |   Applying services.0050_delete_harvestjob... OK
django4geonode_water  |   Applying services.0051_auto_20210930_1657... OK
django4geonode_water  |   Applying services.0052_auto_20211004_1635... OK
django4geonode_water  |   Applying services.0053_alter_service_type... OK
django4geonode_water  |   Applying services.0054_alter_service_type... OK
django4geonode_water  |   Applying sessions.0001_initial... OK
django4geonode_water  |   Applying sites.0001_initial... OK
django4geonode_water  |   Applying sites.0002_alter_domain_unique... OK
django4geonode_water  |   Applying socialaccount.0001_initial... OK
django4geonode_water  |   Applying socialaccount.0002_token_max_lengths... OK
django4geonode_water  |   Applying socialaccount.0003_extra_data_default_dict... OK
django4geonode_water  |   Applying socialaccount.0004_app_provider_id_settings... OK
django4geonode_water  |   Applying socialaccount.0005_socialtoken_nullable_app... OK
django4geonode_water  |   Applying socialaccount.0006_alter_socialaccount_extra_data... OK
django4geonode_water  |   Applying taggit.0003_taggeditem_add_unique_index... OK
django4geonode_water  |   Applying taggit.0004_alter_taggeditem_content_type_alter_taggeditem_tag... OK
django4geonode_water  |   Applying taggit.0005_auto_20220424_2025... OK
django4geonode_water  |   Applying taggit.0006_rename_taggeditem_content_type_object_id_taggit_tagg_content_8fc721_idx... OK
django4geonode_water  |   Applying tastypie.0001_initial... OK
django4geonode_water  |   Applying tastypie.0002_api_access_url_length... OK
django4geonode_water  |   Applying upload.0035_update_uploadsizelimit_objects... OK
django4geonode_water  |   Applying upload.0037_uploadparallelismlimit... OK
django4geonode_water  |   Applying upload.0038_alter_upload_name... OK
django4geonode_water  |   Applying upload.0039_auto_20220506_0833... OK
django4geonode_water  |   Applying user_messages.0001_initial... OK
django4geonode_water  |   Applying user_messages.0002_auto_20171107_1128... OK
django4geonode_water  |   Applying user_messages.0003_auto_20171108_1037... OK
django4geonode_water  |   Applying user_messages.0004_auto_20171108_1101... OK
django4geonode_water  | Operations to perform:
django4geonode_water  |   Apply all migrations: account, actstream, admin, announcements, auth, avatar, base, br, contenttypes, django_celery_results, documents, dynamic_models, favorite, geoapps, geonode_client, geonode_mapstore_client, geonode_resource_processing, geonode_themes, groups, guardian, harvesting, importer, invitations, layers, management_commands_http, maps, monitoring, oauth2_provider, people, pinax_notifications, processing, resource, sequences, services, sessions, sites, socialaccount, taggit, tastypie, upload, user_messages
django4geonode_water  | Running migrations:
django4geonode_water  |   Applying contenttypes.0001_initial... OK
django4geonode_water  |   Applying taggit.0001_initial... OK
django4geonode_water  |   Applying taggit.0002_auto_20150616_2121... OK
django4geonode_water  |   Applying contenttypes.0002_remove_content_type_name... OK
django4geonode_water  |   Applying auth.0001_initial... OK
django4geonode_water  |   Applying auth.0002_alter_permission_name_max_length... OK
django4geonode_water  |   Applying auth.0003_alter_user_email_max_length... OK
django4geonode_water  |   Applying auth.0004_alter_user_username_opts... OK
django4geonode_water  |   Applying auth.0005_alter_user_last_login_null... OK
django4geonode_water  |   Applying auth.0006_require_contenttypes_0002... OK
django4geonode_water  |   Applying people.24_initial... OK
django4geonode_water  |   Applying account.0001_initial... OK
django4geonode_water  |   Applying account.0002_email_max_length... OK
django4geonode_water  |   Applying account.0003_alter_emailaddress_create_unique_verified_email... OK
django4geonode_water  |   Applying account.0004_alter_emailaddress_drop_unique_email... OK
django4geonode_water  |   Applying account.0005_emailaddress_idx_upper_email... OK
django4geonode_water  |   Applying actstream.0001_initial... OK
django4geonode_water  |   Applying actstream.0002_remove_action_data... OK
django4geonode_water  |   Applying actstream.0003_add_follow_flag... OK
django4geonode_water  |   Applying admin.0001_initial... OK
django4geonode_water  |   Applying admin.0002_logentry_remove_auto_add... OK
django4geonode_water  |   Applying admin.0003_logentry_add_action_flag_choices... OK
django4geonode_water  |   Applying announcements.0001_initial... OK
django4geonode_water  |   Applying announcements.0002_auto_20200311_0959... OK
django4geonode_water  |   Applying auth.0007_alter_validators_add_error_messages... OK
django4geonode_water  |   Applying auth.0008_alter_user_username_max_length... OK
django4geonode_water  |   Applying auth.0009_alter_user_last_name_max_length... OK
django4geonode_water  |   Applying auth.0010_alter_group_name_max_length... OK
django4geonode_water  |   Applying auth.0011_update_proxy_permissions... OK
django4geonode_water  |   Applying auth.0012_alter_user_first_name_max_length... OK
django4geonode_water  |   Applying avatar.0001_initial... OK
django4geonode_water  |   Applying avatar.0002_add_verbose_names_to_avatar_fields... OK
django4geonode_water  |   Applying avatar.0003_auto_20170827_1345... OK
django4geonode_water  |   Applying base.24_initial... OK
django4geonode_water  |   Applying layers.24_initial... OK
django4geonode_water  |   Applying upload.24_initial... OK
django4geonode_water  |   Applying upload.0025_auto_20200115_1836... OK
django4geonode_water  |   Applying upload.0026_auto_20200321_1349... OK
django4geonode_water  |   Applying upload.0027_auto_20210329_1348... OK
django4geonode_water  |   Applying upload.0028_upload_append_to_mosaic_opts... OK
django4geonode_water  |   Applying upload.0029_auto_20210329_1458... OK
django4geonode_water  |   Applying upload.0030_upload_create_date... OK
django4geonode_water  |   Applying upload.0031_upload_resume_url... OK
django4geonode_water  |   Applying upload.0032_uploadsizelimit... OK
django4geonode_water  |   Applying upload.0033_upload_store_spatial_files... OK
django4geonode_water  |   Applying services.24_initial... OK
django4geonode_water  |   Applying services.0025_harvestjob... OK
django4geonode_water  |   Applying services.0026_auto_20171130_0600_squashed_0041_auto_20190404_0820... OK
django4geonode_water  |   Applying layers.24_to_26... OK
django4geonode_water  |   Applying layers.26_to_27... OK
django4geonode_water  |   Applying base.24_to_26... OK
django4geonode_water  |   Applying base.26_to_27... OK
django4geonode_water  |   Applying base.0027_auto_20170801_1228_squashed_0037_auto_20190222_1347... OK
django4geonode_water  |   Applying layers.0027_auto_20170801_1228_squashed_0033_auto_20180606_1543... OK
django4geonode_water  |   Applying services.0027_auto_20190429_0831... OK
django4geonode_water  |   Applying services.0028_remove_service_last_updated... OK
django4geonode_water  |   Applying services.0029_remove_service_created... OK
django4geonode_water  |   Applying base.0028_curatedthumbnail... OK
django4geonode_water  |   Applying base.0029_resourcebase_last_updated... OK
django4geonode_water  |   Applying base.0030_resourcebase_created... OK
django4geonode_water  |   Applying base.0031_auto_20200114_1651... OK
django4geonode_water  |   Applying base.0032_auto_20200115_1121... OK
django4geonode_water  |   Applying base.0033_auto_20200115_1145... OK
django4geonode_water  |   Applying base.0034_auto_20200212_0410... OK
django4geonode_water  |   Applying base.0035_auto_20200212_0428... OK
django4geonode_water  |   Applying base.0036_resourcebase_doi... OK
django4geonode_water  |   Applying base.0037_auto_20200305_1520... OK
django4geonode_water  |   Applying base.0038_configuration... OK
django4geonode_water  |   Applying base.0039_auto_20200321_1338... OK
django4geonode_water  |   Applying base.0038_delete_backup... OK
django4geonode_water  |   Applying base.0040_merge_20200321_2245... OK
django4geonode_water  |   Applying groups.24_initial... OK
django4geonode_water  |   Applying groups.26_to_27... OK
django4geonode_water  |   Applying groups.0027_auto_20180105_1631_squashed_0028_auto_20180606_1543... OK
django4geonode_water  |   Applying groups.0028_auto_20200114_1651... OK
django4geonode_water  |   Applying groups.0029_auto_20200115_1121... OK
django4geonode_water  |   Applying groups.0030_auto_20200221_1107... OK
django4geonode_water  |   Applying groups.0031_auto_20200305_1522... OK
django4geonode_water  |   Applying groups.0031_auto_20200304_1434... OK
django4geonode_water  |   Applying groups.0032_merge_20200306_1153... OK
django4geonode_water  |   Applying base.0038_auto_20200318_0953... OK
django4geonode_water  |   Applying base.0041_merge_20200323_1119... OK
django4geonode_water  |   Applying base.0042_auto_20200414_1554... OK
django4geonode_water  |   Applying base.0043_auto_20200527_0833... OK
django4geonode_water  |   Applying base.0044_resourcebase_bbox_polygon... OK
django4geonode_water  |   Applying layers.0028_auto_20200323_1945... OK
django4geonode_water  |   Applying base.0045_auto_20200507_0445... OK
django4geonode_water  |   Applying base.0044_auto_20201001_1514... OK
django4geonode_water  |   Applying base.0046_merge_20201016_0937... OK
django4geonode_water  |   Applying base.0047_resourcebase_attribution... OK
django4geonode_water  |   Applying base.0048_auto_20201116_0914... OK
django4geonode_water  |   Applying base.0049_resourcebase_resource_type... OK
django4geonode_water  |   Applying base.0050_auto_20210201_1008... OK
django4geonode_water  |   Applying base.0051_auto_20210202_1656... OK
django4geonode_water  |   Applying base.0052_auto_20210205_1631... OK
django4geonode_water  |   Applying base.0053_auto_20210223_0905... OK
django4geonode_water  |   Applying base.0054_auto_20210223_1202... OK
django4geonode_water  |   Applying base.0055_auto_20210302_1109... OK
django4geonode_water  |   Applying base.0056_resourcebase_ll_bbox_polygon... OK
django4geonode_water  |   Applying base.0057_resourcebase_metadata_only... OK
django4geonode_water  |   Applying base.0058_thesaurus_order... OK
django4geonode_water  |   Applying base.0059_fill_empty_resource_type... OK
django4geonode_water  |   Applying base.0060_auto_20210512_1658... OK
django4geonode_water  |   Applying base.0061_auto_20211117_1238... OK
django4geonode_water  |   Applying base.0062_resourcebase_extra_metadata... OK
django4geonode_water  |   Applying base.0063_auto_20220128_1042... OK
django4geonode_water  |   Applying base.0064_resourcebase_metadata... OK
django4geonode_water  |   Applying base.0060_resourcebase_state... OK
django4geonode_water  |   Applying base.0061_merge_0060_auto_20210512_1658_0060_resourcebase_state... OK
django4geonode_water  |   Applying base.0062_resourcebase_files... OK
django4geonode_water  |   Applying upload.0033_auto_20210527_1520... OK
django4geonode_water  |   Applying upload.0033_auto_20210528_1556... OK
django4geonode_water  |   Applying upload.0033_auto_20210531_1252... OK
django4geonode_water  |   Applying services.0030_auto_20200115_1121... OK
django4geonode_water  |   Applying services.0031_service_probe... OK
django4geonode_water  |   Applying services.0042_update_metadata_only... OK
django4geonode_water  |   Applying services.0043_auto_20210519_1308... OK
django4geonode_water  |   Applying services.0044_auto_20210628_0955... OK
django4geonode_water  |   Applying services.0045_auto_20210629_1355... OK
django4geonode_water  |   Applying layers.0028_auto_20200610_0759... OK
django4geonode_water  |   Applying layers.0029_auto_20200610_0803... OK
django4geonode_water  |   Applying layers.0030_auto_20200610_0825... OK
django4geonode_water  |   Applying layers.0031_auto_20200612_1533... OK
django4geonode_water  |   Applying layers.0032_auto_20200612_1544... OK
django4geonode_water  |   Applying layers.0033_merge_20200618_2150... OK
django4geonode_water  |   Applying layers.0034_auto_20210329_1458... OK
django4geonode_water  |   Applying layers.0035_auto_20210525_0847... OK
django4geonode_water  |   Applying documents.24_initial... OK
django4geonode_water  |   Applying base.0063_alter_resourcebase_files... OK
django4geonode_water  |   Applying base.0064_alter_resourcebase_files... OK
django4geonode_water  |   Applying base.0065_alter_curatedthumbnail_img... OK
django4geonode_water  |   Applying base.0066_resourcebase_data... OK
django4geonode_water  |   Applying base.0067_resourcebase_storetype... OK
django4geonode_water  |   Applying layers.0036_remove_layer_storetype... OK
django4geonode_water  |   Applying base.0068_rename_storetype_resourcebase_subtype... OK
django4geonode_water  |   Applying base.0069_resourcebase_sourcetype... OK
django4geonode_water  |   Applying base.0070_auto_20210720_1709... OK
django4geonode_water  |   Applying layers.0037_layer_ptype... OK
django4geonode_water  |   Applying harvesting.0001_initial... OK
django4geonode_water  |   Applying harvesting.0002_auto_20210415_1719... OK
django4geonode_water  |   Applying harvesting.0003_harvestingsession_total_records_found... OK
django4geonode_water  |   Applying harvesting.0004_auto_20210428_1055... OK
django4geonode_water  |   Applying harvesting.0005_auto_20210428_1100... OK
django4geonode_water  |   Applying harvesting.0006_harvester_availability_check_task... OK
django4geonode_water  |   Applying harvesting.0007_auto_20210519_1034... OK
django4geonode_water  |   Applying harvesting.0008_auto_20210519_1055... OK
django4geonode_water  |   Applying harvesting.0009_auto_20210519_1638... OK
django4geonode_water  |   Applying harvesting.0010_harvestableresource_should_be_harvested... OK
django4geonode_water  |   Applying harvesting.0011_harvester_status... OK
django4geonode_water  |   Applying harvesting.0012_auto_20210520_2055... OK
django4geonode_water  |   Applying harvesting.0013_auto_20210520_2159... OK
django4geonode_water  |   Applying harvesting.0014_auto_20210526_1521... OK
django4geonode_water  |   Applying harvesting.0015_harvestableresource_status... OK
django4geonode_water  |   Applying harvesting.0016_harvestableresource_remote_resource_type... OK
django4geonode_water  |   Applying harvesting.0017_auto_20210614_1530... OK
django4geonode_water  |   Applying harvesting.0018_auto_20210614_1733... OK
django4geonode_water  |   Applying harvesting.0019_auto_20210614_1735... OK
django4geonode_water  |   Applying harvesting.0020_alter_harvester_default_access_permissions... OK
django4geonode_water  |   Applying harvesting.0021_alter_harvester_default_access_permissions... OK
django4geonode_water  |   Applying harvesting.0022_alter_harvester_default_access_permissions... OK
django4geonode_water  |   Applying harvesting.0023_harvestableresource_last_refreshed... OK
django4geonode_water  |   Applying harvesting.0024_remove_harvestableresource_available... OK
django4geonode_water  |   Applying harvesting.0025_auto_20210624_1459... OK
django4geonode_water  |   Applying harvesting.0026_harvestableresource_last_harvesting_succeeded... OK
django4geonode_water  |   Applying layers.0038_rename_layer_dataset... OK
django4geonode_water  |   Applying layers.0039_auto_20210720_1311... OK
django4geonode_water  |   Applying base.0071_remove_resourcebase_ows_url... OK
django4geonode_water  |   Applying layers.0040_dataset_ows_url... OK
django4geonode_water  |   Applying layers.0041_uodate_resource_type_field... OK
django4geonode_water  |   Applying layers.0042_alter_dataset_options... OK
django4geonode_water  |   Applying layers.0043_auto_20220225_1605... OK
django4geonode_water  |   Applying layers.0044_alter_dataset_unique_together... OK
django4geonode_water  |   Applying base.0072_remove_resourcebase_detail_url... OK
django4geonode_water  |   Applying base.0073_resourcebase_thumbnail_path... OK
django4geonode_water  |   Applying base.0074_drop_curated_thumbs... OK
django4geonode_water  |   Applying base.0075_delete_curatedthumbnail... OK
django4geonode_water  |   Applying base.0076_merge_20220204_1339... OK
django4geonode_water  |   Applying base.0076_auto_20220128_0919... OK
django4geonode_water  |   Applying base.0077_merge_20220204_1347... OK
django4geonode_water  |   Applying base.0078_alter_resourcebase_metadata... OK
django4geonode_water  |   Applying base.0079_alter_resourcebase_alternate... OK
django4geonode_water  |   Applying base.0080_alter_resourcebase_uuid... OK
django4geonode_water  |   Applying base.0081_alter_resourcebase_alternate... OK
django4geonode_water  |   Applying base.0082_remove_dialogos_comment... OK
django4geonode_water  |   Applying base.0083_clean_resources_with_missing_thumb... OK
django4geonode_water  |   Applying base.0084_remove_comments_from_actions... OK
django4geonode_water  |   Applying base.0085_alter_resourcebase_uuid... OK
django4geonode_water  |   Applying base.0086_linkedresource... OK
django4geonode_water  |   Applying base.0087_thesauruskeyword_icon... OK
django4geonode_water  |   Applying base.0088_auto_20231019_1244... OK
django4geonode_water  |   Applying base.0089_resourcebase_advertised... OK
django4geonode_water  |   Applying base.0090_alter_resourcebase_polymorphic_ctype... OK
django4geonode_water  |   Applying br.0001_initial... OK
django4geonode_water  |   Applying django_celery_results.0001_initial... OK
django4geonode_water  |   Applying django_celery_results.0002_add_task_name_args_kwargs... OK
django4geonode_water  |   Applying django_celery_results.0003_auto_20181106_1101... OK
django4geonode_water  |   Applying django_celery_results.0004_auto_20190516_0412... OK
django4geonode_water  |   Applying django_celery_results.0005_taskresult_worker... OK
django4geonode_water  |   Applying django_celery_results.0006_taskresult_date_created... OK
django4geonode_water  |   Applying django_celery_results.0007_remove_taskresult_hidden... OK
django4geonode_water  |   Applying django_celery_results.0008_chordcounter... OK
django4geonode_water  |   Applying django_celery_results.0009_groupresult... OK
django4geonode_water  |   Applying django_celery_results.0010_remove_duplicate_indices... OK
django4geonode_water  |   Applying django_celery_results.0011_taskresult_periodic_task_name... OK
django4geonode_water  |   Applying documents.25_add_documentresourcelink_table... OK
django4geonode_water  |   Applying documents.26_move_data_to_documentresourcelink_table... OK
django4geonode_water  |   Applying documents.27_drop_resource_columns_from_document_table... OK
django4geonode_water  |   Applying documents.0028_auto_20170801_1228_squashed_0035_auto_20190404_0820... OK
django4geonode_water  |   Applying documents.0029_auto_20190429_0831... OK
django4geonode_water  |   Applying documents.0030_auto_20200305_1520... OK
django4geonode_water  |   Applying documents.0031_auto_20201107_2241... OK
django4geonode_water  |   Applying documents.0032_remove_document_doc_file... OK
django4geonode_water  |   Applying documents.0033_remove_document_doc_type... OK
django4geonode_water  |   Applying documents.0036_clean_document_thumbnails... OK
django4geonode_water  |   Applying documents.0037_delete_documentresourcelink... OK
django4geonode_water  |   Applying documents.0038_alter_document_doc_url... OK
django4geonode_water  |   Applying dynamic_models.0001_initial... OK
django4geonode_water  |   Applying dynamic_models.0002_remove_modelschema__modified... OK
django4geonode_water  |   Applying dynamic_models.0003_add_classname_remove_datatype... OK
django4geonode_water  |   Applying dynamic_models.0004_modelschema_db_name... OK
django4geonode_water  |   Applying dynamic_models.0005_auto_20220621_0718... OK
django4geonode_water  |   Applying favorite.0001_initial... OK
django4geonode_water  |   Applying geoapps.0001_initial... OK
django4geonode_water  |   Applying geoapps.0002_auto_20210615_0717... OK
django4geonode_water  |   Applying geoapps.0003_update_detail_url... OK
django4geonode_water  |   Applying geoapps.0003_alter_geoapp_name... OK
django4geonode_water  |   Applying geoapps.0004_merge_0003_alter_geoapp_name_0003_update_detail_url... OK
django4geonode_water  |   Applying geoapps.0005_auto_20210705_1121... OK
django4geonode_water  |   Applying geoapps.0006_geoapp_blob_migration... OK
django4geonode_water  |   Applying geonode_client.0001_initial... OK
django4geonode_water  |   Applying geonode_client.0002_auto_20180412_1039_squashed_0005_auto_20181015_1201... OK
django4geonode_water  |   Applying maps.24_initial... OK
django4geonode_water  |   Applying maps.0025_auto_20170801_1228_squashed_0032_auto_20190404_0820... OK
django4geonode_water  |   Applying maps.0026_auto_20190429_0831... OK
django4geonode_water  |   Applying maps.0027_auto_20190516_0909... OK
django4geonode_water  |   Applying maps.0028_maplayer_store... OK
django4geonode_water  |   Applying maps.0029_delete_mapsnapshot... OK
django4geonode_water  |   Applying maps.0030_auto_20210506_0836... OK
django4geonode_water  |   Applying maps.0031_auto_20210615_0717... OK
django4geonode_water  |   Applying maps.0032_auto_20210714_1452... OK
django4geonode_water  |   Applying maps.0033_convert_map_blob... OK
django4geonode_water  |   Applying maps.0034_maplayer_extra_params_and_current_style... OK
django4geonode_water  |   Applying maps.0035_alter_maplayer_map... OK
django4geonode_water  |   Applying maps.0036_maplayer_dataset... OK
django4geonode_water  |   Applying maps.0037_datamigration_maplayer_dataset... OK
django4geonode_water  |   Applying maps.0038_alter_maplayer_map... OK
django4geonode_water  |   Applying maps.0039_set_legacy_fields_as_nullable... OK
django4geonode_water  |   Applying maps.0040_remove_maplayer_legacy_fields... OK
django4geonode_water  |   Applying maps.0041_remove_map_legacy_fields... OK
django4geonode_water  |   Applying maps.0042_remove_maplayer_styles... OK
django4geonode_water  |   Applying geonode_mapstore_client.0001_clean_prev_version_geoapps... OK
django4geonode_water  |   Applying geonode_mapstore_client.0002_migrate_map_blob... OK
django4geonode_water  |   Applying geonode_mapstore_client.0003_searchservice... OK
django4geonode_water  |   Applying geonode_mapstore_client.0004_auto_20231114_1705... OK
django4geonode_water  |   Applying geonode_resource_processing.0001_initial... OK
django4geonode_water  |   Applying geonode_resource_processing.0002_alter_processingworkflowtasks_options... OK
django4geonode_water  |   Applying geonode_resource_processing.0003_alter_abstractprocessingtask_polymorphic_ctype... OK
django4geonode_water  |   Applying geonode_themes.0001_initial... OK
django4geonode_water  |   Applying geonode_themes.0002_auto_20181015_1208_squashed_0003_remove_geonodethemecustomization_identifier... OK
django4geonode_water  |   Applying geonode_themes.0003_auto_20190503_1742... OK
django4geonode_water  |   Applying geonode_themes.0004_auto_20190503_1817... OK
django4geonode_water  |   Applying geonode_themes.0005_auto_20190510_1335... OK
django4geonode_water  |   Applying geonode_themes.0006_geonodethemecustomization_body_text_color... OK
django4geonode_water  |   Applying geonode_themes.0007_auto_20190510_1545... OK
django4geonode_water  |   Applying geonode_themes.0008_auto_20191122_1714... OK
django4geonode_water  |   Applying geonode_themes.0009_geonodethemecustomization_footer_bg_color... OK
django4geonode_water  |   Applying geonode_themes.0010_auto_20200115_1121... OK
django4geonode_water  |   Applying geonode_themes.0011_auto_20200727_1451... OK
django4geonode_water  |   Applying geonode_themes.0012_auto_20210716_1102... OK
django4geonode_water  |   Applying geonode_themes.0013_delete_partner... OK
django4geonode_water  |   Applying geonode_themes.0014_auto_20220214_0910... OK
django4geonode_water  |   Applying geonode_themes.0015_alter_geonodethemecustomization_is_enabled... OK
django4geonode_water  |   Applying groups.0033_auto_20200321_1349... OK
django4geonode_water  |   Applying groups.0034_auto_20200512_1431... OK
django4geonode_water  |   Applying guardian.0001_initial... OK
django4geonode_water  |   Applying guardian.0002_generic_permissions_index... OK
django4geonode_water  |   Applying harvesting.0027_remove_harvester_default_access_permissions... OK
django4geonode_water  |   Applying harvesting.0028_harvester_num_harvestable_resources... OK
django4geonode_water  |   Applying harvesting.0029_dynamic_harvester_type_choices... OK
django4geonode_water  |   Applying harvesting.0030_auto_20210917_1125... OK
django4geonode_water  |   Applying harvesting.0031_remove_harvestingsession_total_records_found... OK
django4geonode_water  |   Applying harvesting.0032_harvestingsession_session_details... OK
django4geonode_water  |   Applying harvesting.0033_alter_harvestingsession_status... OK
django4geonode_water  |   Applying harvesting.0034_harvester_unique name... OK
django4geonode_water  |   Applying harvesting.0035_replace_geonode_harvester_module_name... OK
django4geonode_water  |   Applying harvesting.0036_alter_harvester_harvester_type... OK
django4geonode_water  |   Applying harvesting.0037_alter_harvester_name... OK
django4geonode_water  |   Applying harvesting.0038_alter_harvester_status... OK
django4geonode_water  |   Applying harvesting.0039_harvestableresource_abstract... OK
django4geonode_water  |   Applying harvesting.0040_auto_20210927_1455... OK
django4geonode_water  |   Applying harvesting.0041_delete_harvestingsession... OK
django4geonode_water  |   Applying harvesting.0042_auto_20210930_1155... OK
django4geonode_water  |   Applying harvesting.0043_harvester_harvesting_session_update_frequency... OK
django4geonode_water  |   Applying harvesting.0044_migrate_harvester_harvesting_session_update_frequency... OK
django4geonode_water  |   Applying harvesting.0045_remove_harvester_update_frequency... OK
django4geonode_water  |   Applying harvesting.0046_alter_harvester_harvester_type... OK
django4geonode_water  |   Applying harvesting.0047_convert_geonode_harvesters_to_unified... OK
django4geonode_water  |   Applying harvesting.0048_alter_harvester_harvester_type... OK
django4geonode_water  |   Applying harvesting.0049_alter_harvester_harvester_type... OK
django4geonode_water  |   Applying resource.0001_initial... OK
django4geonode_water  |   Applying resource.0002_executionrequest_user... OK
django4geonode_water  |   Applying resource.0003_auto_20210719_1425... OK
django4geonode_water  |   Applying resource.0004_executionrequest_step... OK
django4geonode_water  |   Applying resource.0005_executionrequest_log... OK
django4geonode_water  |   Applying resource.0006_executionrequest_action... OK
django4geonode_water  |   Applying resource.0007_alter_executionrequest_action... OK
django4geonode_water  |   Applying importer.0001_initial... OK
django4geonode_water  |   Applying importer.0002_resourcehandlerinfo_kwargs... OK
django4geonode_water  |   Applying importer.0003_resourcehandlerinfo_execution_id... OK
django4geonode_water  |   Applying importer.0004_rename_execution_id_resourcehandlerinfo_execution_request... OK
django4geonode_water  |   Applying importer.0005_fixup_dynamic_shema_table_names... OK
django4geonode_water  |   Applying importer.0006_dataset_migration... OK
django4geonode_water  |   Applying invitations.0001_initial... OK
django4geonode_water  |   Applying invitations.0002_auto_20151126_0426... OK
django4geonode_water  |   Applying invitations.0003_auto_20151126_1523... OK
django4geonode_water  |   Applying invitations.0004_auto_20230328_1430... OK
django4geonode_water  |   Applying management_commands_http.0001_initial... OK
django4geonode_water  |   Applying maps.0043_auto_20230807_1234... OK
django4geonode_water  |   Applying monitoring.0001_monitoring_init... OK
django4geonode_water  |   Applying monitoring.0002_monitoring_update... OK
django4geonode_water  |   Applying monitoring.0003_monitoring_resources... OK
django4geonode_water  |   Applying monitoring.0004_monitoring_metric_type... OK
django4geonode_water  |   Applying monitoring.0005_monitoring_ows_service... OK
django4geonode_water  |   Applying monitoring.0006_monitoring_path_text... OK
django4geonode_water  |   Applying monitoring.0007_monitoring_exception_message... OK
django4geonode_water  |   Applying monitoring.0008_monitoring_notifications_check... OK
django4geonode_water  |   Applying monitoring.0009_sample_count... OK
django4geonode_water  |   Applying monitoring.0010_metric_unit... OK
django4geonode_water  |   Applying monitoring.0011_notification_def... OK
django4geonode_water  |   Applying monitoring.0012_notifications_service... OK
django4geonode_water  |   Applying monitoring.0013_notifications_def_description... OK
django4geonode_water  |   Applying monitoring.0014_notifications_emails... OK
django4geonode_water  |   Applying monitoring.0015_notification_grace_period... OK
django4geonode_water  |   Applying monitoring.0016_notification_severity... OK
django4geonode_water  |   Applying monitoring.0017_monitoring_notification_active... OK
django4geonode_water  |   Applying monitoring.0018_notification_check_def... OK
django4geonode_water  |   Applying monitoring.0019_notification_check_def_link... OK
django4geonode_water  |   Applying monitoring.0020_metric_description... OK
django4geonode_water  |   Applying monitoring.0021_auto_20180301_0932... OK
django4geonode_water  |   Applying monitoring.0022_service_last_check_default... OK
django4geonode_water  |   Applying monitoring.0023_auto_20190528_0906... OK
django4geonode_water  |   Applying monitoring.0024_auto_20190605_1619... OK
django4geonode_water  |   Applying monitoring.0025_auto_20190813_0808... OK
django4geonode_water  |   Applying monitoring.0026_auto_20190821_0736... OK
django4geonode_water  |   Applying monitoring.0027_monitoredresource_resource_id... OK
django4geonode_water  |   Applying monitoring.0028_auto_20190830_1018... OK
django4geonode_water  |   Applying monitoring.0029_auto_20200115_1121... OK
django4geonode_water  |   Applying monitoring.0030_auto_20200305_1520... OK
django4geonode_water  |   Applying monitoring.0031_auto_20201012_0931... OK
django4geonode_water  |   Applying monitoring.0032_alter_monitoredresource_type... OK
django4geonode_water  |   Applying monitoring.0033_alter_monitoredresource_type... OK
django4geonode_water  |   Applying monitoring.0034_alter_notificationcheck_metrics... OK
django4geonode_water  |   Applying oauth2_provider.0001_initial... OK
django4geonode_water  |   Applying oauth2_provider.0002_08_updates... OK
django4geonode_water  |   Applying oauth2_provider.0003_auto_20160316_1503... OK
django4geonode_water  |   Applying oauth2_provider.0004_auto_20160525_1623... OK
django4geonode_water  |   Applying oauth2_provider.0005_auto_20170514_1141... OK
django4geonode_water  |   Applying oauth2_provider.0006_auto_20170903_1632... OK
django4geonode_water  |   Applying oauth2_provider.0007_application_algorithm... OK
django4geonode_water  |   Applying oauth2_provider.0008_idtoken... OK
django4geonode_water  |   Applying oauth2_provider.0006_auto_20171214_2232... OK
django4geonode_water  |   Applying oauth2_provider.0009_merge_20180606_1314... OK
django4geonode_water  |   Applying oauth2_provider.0010_auto_20190406_1805... OK
django4geonode_water  |   Applying oauth2_provider.0011_auto_20190413_2007... OK
django4geonode_water  |   Applying oauth2_provider.0012_accesstoken_id_token... OK
django4geonode_water  |   Applying oauth2_provider.0013_auto_20190816_1714... OK
django4geonode_water  |   Applying oauth2_provider.0014_auto_20210510_0935... OK
django4geonode_water  |   Applying oauth2_provider.0015_fix_uuid_20210527_1930... OK
django4geonode_water  |   Applying oauth2_provider.0016_alter_accesstoken_user_alter_application_user_and_more... OK
django4geonode_water  |   Applying people.0025_auto_20170924_0932_squashed_0028_auto_20180606_1543... OK
django4geonode_water  |   Applying people.0026_auto_20200109_1600... OK
django4geonode_water  |   Applying people.0027_auto_20200114_1651... OK
django4geonode_water  |   Applying people.0028_auto_20200115_1121... OK
django4geonode_water  |   Applying people.0029_auto_20201216_1335... OK
django4geonode_water  |   Applying people.0030_auto_20210201_0953... OK
django4geonode_water  |   Applying people.0030_auto_20210118_1112... OK
django4geonode_water  |   Applying people.0031_merge_20210205_0824... OK
django4geonode_water  |   Applying people.0032_set_contributors_group... OK
django4geonode_water  |   Applying people.0033_alter_profile_first_name... OK
django4geonode_water  |   Applying people.0034_auto_20210519_1308... OK
django4geonode_water  |   Applying people.0035_alter_profile_first_name... OK
django4geonode_water  |   Applying people.0033_set_contributors_permissions... OK
django4geonode_water  |   Applying people.0036_merge_20210706_0951... OK
django4geonode_water  |   Applying pinax_notifications.0001_initial... OK
django4geonode_water  |   Applying pinax_notifications.0002_auto_20171003_2006... OK
django4geonode_water  |   Applying processing.0001_initial... OK
django4geonode_water  |   Applying resource.0008_executionrequest_source... OK
django4geonode_water  |   Applying sequences.0001_initial... OK
django4geonode_water  |   Applying sequences.0002_alter_sequence_last... OK
django4geonode_water  |   Applying services.0046_auto_20210903_1427... OK
django4geonode_water  |   Applying services.0048_service_harvester... OK
django4geonode_water  |   Applying services.0049_remove_service_probe... OK
django4geonode_water  |   Applying services.0050_delete_harvestjob... OK
django4geonode_water  |   Applying services.0051_auto_20210930_1657... OK
django4geonode_water  |   Applying services.0052_auto_20211004_1635... OK
django4geonode_water  |   Applying services.0053_alter_service_type... OK
django4geonode_water  |   Applying services.0054_alter_service_type... OK
django4geonode_water  |   Applying sessions.0001_initial... OK
django4geonode_water  |   Applying sites.0001_initial... OK
django4geonode_water  |   Applying sites.0002_alter_domain_unique... OK
django4geonode_water  |   Applying socialaccount.0001_initial... OK
django4geonode_water  |   Applying socialaccount.0002_token_max_lengths... OK
django4geonode_water  |   Applying socialaccount.0003_extra_data_default_dict... OK
django4geonode_water  |   Applying socialaccount.0004_app_provider_id_settings... OK
django4geonode_water  |   Applying socialaccount.0005_socialtoken_nullable_app... OK
django4geonode_water  |   Applying socialaccount.0006_alter_socialaccount_extra_data... OK
django4geonode_water  |   Applying taggit.0003_taggeditem_add_unique_index... OK
django4geonode_water  |   Applying taggit.0004_alter_taggeditem_content_type_alter_taggeditem_tag... OK
django4geonode_water  |   Applying taggit.0005_auto_20220424_2025... OK
django4geonode_water  |   Applying taggit.0006_rename_taggeditem_content_type_object_id_taggit_tagg_content_8fc721_idx... OK
django4geonode_water  |   Applying tastypie.0001_initial... OK
django4geonode_water  |   Applying tastypie.0002_api_access_url_length... OK
django4geonode_water  |   Applying upload.0035_update_uploadsizelimit_objects... OK
django4geonode_water  |   Applying upload.0037_uploadparallelismlimit... OK
django4geonode_water  |   Applying upload.0038_alter_upload_name... OK
django4geonode_water  |   Applying upload.0039_auto_20220506_0833... OK
django4geonode_water  |   Applying user_messages.0001_initial... OK
django4geonode_water  |   Applying user_messages.0002_auto_20171107_1128... OK
django4geonode_water  |   Applying user_messages.0003_auto_20171108_1037... OK
django4geonode_water  |   Applying user_messages.0004_auto_20171108_1101... OK
django4geonode_water  | Unknown command: 'rebuild_index'
django4geonode_water  | Type 'manage.py help' for usage.
django4geonode_water  | migrations tasks done
django4geonode_water  | **********************prepare fixture***************************
django4geonode_water  | prepare tasks done
django4geonode_water  | **************************fixtures********************************
django4geonode_water  | /usr/local/lib/python3.10/dist-packages/django/db/models/fields/__init__.py:1595: RuntimeWarning: DateTimeField Profile.last_login received a naive datetime (2011-06-09 15:45:34) while time zone support is active.
django4geonode_water  |   warnings.warn(
django4geonode_water  | /usr/local/lib/python3.10/dist-packages/django/db/models/fields/__init__.py:1595: RuntimeWarning: DateTimeField Profile.date_joined received a naive datetime (2011-06-09 15:15:27) while time zone support is active.
django4geonode_water  |   warnings.warn(
django4geonode_water  | Installed 1 object(s) from 1 fixture(s)
django4geonode_water  | Installed 1 object(s) from 1 fixture(s)
django4geonode_water  | Installed 1 object(s) from 1 fixture(s)
django4geonode_water  | Installed 304 object(s) from 1 fixture(s)
django4geonode_water  | fixtures tasks done
django4geonode_water  | monitoringfixture tasks done
django4geonode_water  | **************************init file********************************
django4geonode_water  | initialized tasks done
django4geonode_water  | ***********************update admin details**************************
django4geonode_water  | /bin/bash: line 1: django-admin.py: command not found
django4geonode_water  |  * Restarting periodic command scheduler cron
django4geonode_water  |  * Stopping periodic command scheduler cron
django4geonode_water  |    ...done.
django4geonode_water  |  * Starting periodic command scheduler cron
django4geonode_water  |    ...done.
django4geonode_water  | \n\n\n
django4geonode_water  | -----------------------------------------------------
django4geonode_water  | STARTING DJANGO ENTRYPOINT Mon May 20 13:14:11 UTC 2024
django4geonode_water  | -----------------------------------------------------
django4geonode_water  | ***************************setting env*********************************
django4geonode_water  | ACCOUNT_EMAIL_CONFIRMATION_EMAIL=False
django4geonode_water  | MODIFY_TOPICCATEGORY=True
django4geonode_water  | LDAP_USER_SEARCH_FILTERSTR=(&(uid=%(user)s)(objectClass=person))
django4geonode_water  | X_FRAME_OPTIONS=SAMEORIGIN
django4geonode_water  | RESTART_POLICY_MAX_ATTEMPTS=3
django4geonode_water  | ASYNC_SIGNALS=True
django4geonode_water  | GEONODE_DATABASE_USER=geonode_water
django4geonode_water  | DJANGO_EMAIL_USE_SSL=False
django4geonode_water  | OGC_REQUEST_POOL_CONNECTIONS=10
django4geonode_water  | DATABASE_URL=postgis://geonode_water:water@db:5432/geonode_water
django4geonode_water  | OAUTH2_API_KEY=
django4geonode_water  | OGC_REQUEST_MAX_RETRIES=1
django4geonode_water  | GEOSERVER_LB_HOST_IP=geoserver
django4geonode_water  | POSTGRES_BASE_IMAGE_VERSION=15.3-latest
django4geonode_water  | ADMIN_USERNAME=admin
django4geonode_water  | API_LOCKDOWN=False
django4geonode_water  | HOSTNAME=a7bbfd67cc03
django4geonode_water  | AUTO_ASSIGN_REGISTERED_MEMBERS_TO_REGISTERED_MEMBERS_GROUP_NAME=True
django4geonode_water  | DJANGO_EMAIL_HOST=localhost
django4geonode_water  | ENABLE_JSONP=true
django4geonode_water  | POSTGRES_PASSWORD=water
django4geonode_water  | TIME_ENABLED=True
django4geonode_water  | CENTRALIZED_DASHBOARD_ENABLED=False
django4geonode_water  | GEOSERVER_CORS_ALLOWED_ORIGINS=*
django4geonode_water  | GEONODE_GEODATABASE_USER=geonode_water_data
django4geonode_water  | AVATAR_GRAVATAR_SSL=True
django4geonode_water  | ALLOWED_HOSTS=['django', '10.0.2.54']
django4geonode_water  | MONITORING_SERVICE_NAME=local-geonode
django4geonode_water  | FAVORITE_ENABLED=True
django4geonode_water  | USER_ANALYTICS_GZIP=True
django4geonode_water  | GEONODE_BASE_IMAGE_VERSION=master
django4geonode_water  | CELERY_BEAT_SCHEDULER=celery.beat:PersistentScheduler
django4geonode_water  | MEMCACHED_LOCK_EXPIRE=3600
django4geonode_water  | RESTART_POLICY_WINDOW=120s
django4geonode_water  | C_FORCE_ROOT=1
django4geonode_water  | CACHE_BUSTING_STATIC_ENABLED=False
django4geonode_water  | MOSAIC_ENABLED=False
django4geonode_water  | DEFAULT_BACKEND_UPLOADER=geonode.importer
django4geonode_water  | EXIF_ENABLED=True
django4geonode_water  | COMPOSE_PROJECT_NAME=geonode_water
django4geonode_water  | LOCKDOWN_GEONODE=False
django4geonode_water  | LDAP_GROUP_SEARCH_FILTERSTR=(|(cn=abt1)(cn=abt2)(cn=abt3)(cn=abt4)(cn=abt5)(cn=abt6))
django4geonode_water  | MAX_DOCUMENT_SIZE=200
django4geonode_water  | RESTART_POLICY_DELAY=5s
django4geonode_water  | RESOLVER=127.0.0.11
django4geonode_water  | LDAP_USER_SEARCH_DN=dc=ad,dc=example,dc=org
django4geonode_water  | NGINX_BASE_URL=http://10.0.2.54
django4geonode_water  | MEMCACHED_BACKEND=django.core.cache.backends.memcached.MemcachedCache
django4geonode_water  | MEMCACHED_OPTIONS=
django4geonode_water  | PWD=/usr/src/geonode_water
django4geonode_water  | GEOSERVER_CORS_ALLOWED_METHODS=GET,POST,PUT,DELETE,HEAD,OPTIONS
django4geonode_water  | BING_API_KEY=
django4geonode_water  | ACCOUNT_AUTHENTICATION_METHOD=username_email
django4geonode_water  | MEMCACHED_LOCK_TIMEOUT=10
django4geonode_water  | HAYSTACK_ENGINE_INDEX_NAME=haystack
django4geonode_water  | OGC_REQUEST_TIMEOUT=30
django4geonode_water  | GEOSERVER_CORS_ALLOWED_HEADERS=*
django4geonode_water  | DJANGO_EMAIL_PORT=25
django4geonode_water  | DEFAULT_ANONYMOUS_DOWNLOAD_PERMISSION=True
django4geonode_water  | STATIC_ROOT=/mnt/volumes/statics/static/
django4geonode_water  | ADMIN_MODERATE_UPLOADS=False
django4geonode_water  | _=/usr/bin/env
django4geonode_water  | LETSENCRYPT_BASE_IMAGE_VERSION=2.6.0-latest
django4geonode_water  | GEONODE_DB_CONN_MAX_AGE=0
django4geonode_water  | TASTYPIE_APIKEY=
django4geonode_water  | BROKER_URL=amqp://guest:guest@rabbitmq:5672/
django4geonode_water  | ADMIN_EMAIL=None
django4geonode_water  | HOME=/root
django4geonode_water  | LANG=C.UTF-8
django4geonode_water  | HTTP_PORT=80
django4geonode_water  | RESOURCE_PUBLISHING=False
django4geonode_water  | DEFAULT_BACKEND_DATASTORE=datastore
django4geonode_water  | CLIENT_RESULTS_LIMIT=5
django4geonode_water  | outFormat=text/javascript
django4geonode_water  | MAPBOX_ACCESS_TOKEN=
django4geonode_water  | HAYSTACK_ENGINE_URL=http://elasticsearch:9200/
django4geonode_water  | BACKUPS_VOLUME_DRIVER=local
django4geonode_water  | SECRET_KEY=E~+IcXeL|7/&\n@=uM>UvZh,T&9N<98g_DHmd6D:I@WQRa|Br(
django4geonode_water  | LDAP_BIND_DN=uid=ldapinfo,cn=users,dc=ad,dc=example,dc=org
django4geonode_water  | ADMIN_PASSWORD=water
django4geonode_water  | DATABASE_PORT=5432
django4geonode_water  | GEONODE_DATABASE_SCHEMA=public
django4geonode_water  | ACCOUNT_OPEN_SIGNUP=True
django4geonode_water  | DJANGO_EMAIL_HOST_PASSWORD=
django4geonode_water  | DEFAULT_MAX_UPLOAD_SIZE=5368709120
django4geonode_water  | HAYSTACK_SEARCH_RESULTS_PER_PAGE=200
django4geonode_water  | DJANGO_SETTINGS_MODULE=geonode_water.settings
django4geonode_water  | GEOSERVER_JAVA_OPTS=-Djava.awt.headless=true -Xms4G -Xmx4G -Dgwc.context.suffix=gwc -XX:+UnlockDiagnosticVMOptions -XX:+LogVMOutput -XX:LogFile=/var/log/jvm.log -XX:PerfDataSamplingInterval=500 -XX:SoftRefLRUPolicyMSPerMB=36000 -XX:-UseGCOverheadLimit -XX:ParallelGCThreads=4 -Dfile.encoding=UTF8 -Djavax.servlet.request.encoding=UTF-8 -Djavax.servlet.response.encoding=UTF-8 -Duser.timezone=GMT -Dorg.geotools.shapefile.datetime=false -DGS-SHAPEFILE-CHARSET=UTF-8 -DGEOSERVER_CSRF_DISABLED=true -DPRINT_BASE_URL=http://10.0.2.54/geoserver/pdf -DALLOW_ENV_PARAMETRIZATION=true -Xbootclasspath/a:/usr/local/tomcat/webapps/geoserver/WEB-INF/lib/marlin-0.9.3-Unsafe.jar -Dsun.java2d.renderer=org.marlin.pisces.MarlinRenderingEngine
django4geonode_water  | GEOSERVER_LB_PORT=8080
django4geonode_water  | ACCOUNT_EMAIL_REQUIRED=True
django4geonode_water  | ACCOUNT_APPROVAL_REQUIRED=False
django4geonode_water  | SITEURL=http://10.0.2.54/
django4geonode_water  | MEMCACHED_ENABLED=False
django4geonode_water  | GEONODE_LB_HOST_IP=django
django4geonode_water  | LDAP_ENABLED=False
django4geonode_water  | OAUTH2_CLIENT_ID=v8Igz94In7fOc4V
django4geonode_water  | API_LIMIT_PER_PAGE=1000
django4geonode_water  | USER_ANALYTICS_ENABLED=True
django4geonode_water  | DJANGO_EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
django4geonode_water  | GEOSERVER_LOCATION=http://geoserver:8080/geoserver/
django4geonode_water  | LDAP_BIND_PASSWORD=<something_secret>
django4geonode_water  | DEFAULT_MAX_PARALLEL_UPLOADS_PER_USER=5
django4geonode_water  | ACCOUNT_EMAIL_VERIFICATION=none
django4geonode_water  | GEONODE_GEODATABASE_SCHEMA=public
django4geonode_water  | HTTP_HOST=10.0.2.54
django4geonode_water  | HAYSTACK_SEARCH=False
django4geonode_water  | GEONODE_INSTANCE_NAME=geonode
django4geonode_water  | NGINX_BASE_IMAGE_VERSION=1.25.3-latest
django4geonode_water  | EMAIL_ENABLE=False
django4geonode_water  | LETSENCRYPT_MODE=disabled
django4geonode_water  | HTTPS_PORT=443
django4geonode_water  | SHLVL=1
django4geonode_water  | HTTPS_HOST=
django4geonode_water  | OGC_REQUEST_POOL_MAXSIZE=10
django4geonode_water  | POSTGRES_USER=postgres
django4geonode_water  | ACCOUNT_EMAIL_CONFIRMATION_REQUIRED=False
django4geonode_water  | GEODATABASE_URL=postgis://geonode_water_data:water@db:5432/geonode_water_data
django4geonode_water  | GEOSERVER_DATA_BASE_IMAGE_VERSION=2.24.3-latest
django4geonode_water  | LDAP_GROUP_PROFILE_MEMBER_ATTR=uniqueMember
django4geonode_water  | DJANGO_EMAIL_USE_TLS=False
django4geonode_water  | RESTART_POLICY_CONDITION=on-failure
django4geonode_water  | DJANGO_EMAIL_HOST_USER=
django4geonode_water  | MONITORING_HOST_NAME=geonode
django4geonode_water  | GEONODE_GEODATABASE_PASSWORD=water
django4geonode_water  | IS_CELERY=False
django4geonode_water  | GEONODE_DATABASE_PASSWORD=water
django4geonode_water  | DATABASE_HOST=db
django4geonode_water  | GEOSERVER_PUBLIC_LOCATION=http://10.0.2.54/geoserver/
django4geonode_water  | GEONODE_DB_CONN_TOUT=5
django4geonode_water  | CREATE_LAYER=True
django4geonode_water  | GEOSERVER_ADMIN_PASSWORD=water
django4geonode_water  | INVOKE_LOG_STDOUT=true
django4geonode_water  | GEOSERVER_CORS_ENABLED=True
django4geonode_water  | GOOGLE_API_KEY=
django4geonode_water  | GEOIP_PATH=/mnt/volumes/statics/geoip.db
django4geonode_water  | LC_ALL=C.UTF-8
django4geonode_water  | GEOSERVER_BASE_IMAGE_VERSION=2.24.3-latest
django4geonode_water  | GEONODE_CLIENT_LAYER_PREVIEW_LIBRARY=mapstore
django4geonode_water  | GEONODE_GEODATABASE=geonode_water_data
django4geonode_water  | OGC_REQUEST_BACKOFF_FACTOR=0.3
django4geonode_water  | MEMCACHED_LOCATION=memcached:11211
django4geonode_water  | FORCE_REINIT=false
django4geonode_water  | GEOSERVER_ADMIN_USER=admin
django4geonode_water  | GEONODE_DATABASE=geonode_water
django4geonode_water  | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
django4geonode_water  | DEFAULT_ANONYMOUS_VIEW_PERMISSION=True
django4geonode_water  | MONITORING_ENABLED=False
django4geonode_water  | GEONODE_LB_PORT=8000
django4geonode_water  | CORS_ALLOW_ALL_ORIGINS=True
django4geonode_water  | DOCKER_ENV=production
django4geonode_water  | DOCKER_API_VERSION=1.24
django4geonode_water  | GEOSERVER_WEB_UI_LOCATION=http://10.0.2.54/geoserver/
django4geonode_water  | LDAP_GROUP_SEARCH_DN=cn=groups,dc=ad,dc=example,dc=org
django4geonode_water  | POSTGRESQL_MAX_CONNECTIONS=200
django4geonode_water  | DEFAULT_FROM_EMAIL=None
django4geonode_water  | ACCOUNT_CONFIRM_EMAIL_ON_GET=False
django4geonode_water  | DEBUG=False
django4geonode_water  | MEDIA_ROOT=/mnt/volumes/statics/uploaded/
django4geonode_water  | OAUTH2_CLIENT_SECRET=Qxocry2guRodQHv
django4geonode_water  | SESSION_EXPIRED_CONTROL_ENABLED=True
django4geonode_water  | LDAP_SERVER_URL=ldap://<the_ldap_server>
django4geonode_water  | MONITORING_DATA_TTL=365
django4geonode_water  | Public Hostname or IP is django
django4geonode_water  | Public PORT is 8000
django4geonode_water  | Can not delete the $HOME/.override_env file as it doesn't exists
django4geonode_water  | ****************************finalize env**********************************
django4geonode_water  | ACCOUNT_EMAIL_CONFIRMATION_EMAIL=False
django4geonode_water  | MODIFY_TOPICCATEGORY=True
django4geonode_water  | LDAP_USER_SEARCH_FILTERSTR=(&(uid=%(user)s)(objectClass=person))
django4geonode_water  | X_FRAME_OPTIONS=SAMEORIGIN
django4geonode_water  | RESTART_POLICY_MAX_ATTEMPTS=3
django4geonode_water  | ASYNC_SIGNALS=True
django4geonode_water  | GEONODE_DATABASE_USER=geonode_water
django4geonode_water  | DJANGO_EMAIL_USE_SSL=False
django4geonode_water  | OGC_REQUEST_POOL_CONNECTIONS=10
django4geonode_water  | DATABASE_URL=postgis://geonode_water:water@db:5432/geonode_water
django4geonode_water  | OAUTH2_API_KEY=
django4geonode_water  | OGC_REQUEST_MAX_RETRIES=1
django4geonode_water  | GEOSERVER_LB_HOST_IP=geoserver
django4geonode_water  | POSTGRES_BASE_IMAGE_VERSION=15.3-latest
django4geonode_water  | ADMIN_USERNAME=admin
django4geonode_water  | API_LOCKDOWN=False
django4geonode_water  | HOSTNAME=a7bbfd67cc03
django4geonode_water  | AUTO_ASSIGN_REGISTERED_MEMBERS_TO_REGISTERED_MEMBERS_GROUP_NAME=True
django4geonode_water  | DJANGO_EMAIL_HOST=localhost
django4geonode_water  | ENABLE_JSONP=true
django4geonode_water  | POSTGRES_PASSWORD=water
django4geonode_water  | TIME_ENABLED=True
django4geonode_water  | CENTRALIZED_DASHBOARD_ENABLED=False
django4geonode_water  | GEOSERVER_CORS_ALLOWED_ORIGINS=*
django4geonode_water  | GEONODE_GEODATABASE_USER=geonode_water_data
django4geonode_water  | AVATAR_GRAVATAR_SSL=True
django4geonode_water  | ALLOWED_HOSTS=['django', '10.0.2.54']
django4geonode_water  | MONITORING_SERVICE_NAME=local-geonode
django4geonode_water  | FAVORITE_ENABLED=True
django4geonode_water  | USER_ANALYTICS_GZIP=True
django4geonode_water  | GEONODE_BASE_IMAGE_VERSION=master
django4geonode_water  | CELERY_BEAT_SCHEDULER=celery.beat:PersistentScheduler
django4geonode_water  | MEMCACHED_LOCK_EXPIRE=3600
django4geonode_water  | RESTART_POLICY_WINDOW=120s
django4geonode_water  | C_FORCE_ROOT=1
django4geonode_water  | CACHE_BUSTING_STATIC_ENABLED=False
django4geonode_water  | MOSAIC_ENABLED=False
django4geonode_water  | DEFAULT_BACKEND_UPLOADER=geonode.importer
django4geonode_water  | EXIF_ENABLED=True
django4geonode_water  | COMPOSE_PROJECT_NAME=geonode_water
django4geonode_water  | LOCKDOWN_GEONODE=False
django4geonode_water  | LDAP_GROUP_SEARCH_FILTERSTR=(|(cn=abt1)(cn=abt2)(cn=abt3)(cn=abt4)(cn=abt5)(cn=abt6))
django4geonode_water  | MAX_DOCUMENT_SIZE=200
django4geonode_water  | RESTART_POLICY_DELAY=5s
django4geonode_water  | RESOLVER=127.0.0.11
django4geonode_water  | LDAP_USER_SEARCH_DN=dc=ad,dc=example,dc=org
django4geonode_water  | NGINX_BASE_URL=http://10.0.2.54
django4geonode_water  | MEMCACHED_BACKEND=django.core.cache.backends.memcached.MemcachedCache
django4geonode_water  | MEMCACHED_OPTIONS=
django4geonode_water  | PWD=/usr/src/geonode_water
django4geonode_water  | GEOSERVER_CORS_ALLOWED_METHODS=GET,POST,PUT,DELETE,HEAD,OPTIONS
django4geonode_water  | BING_API_KEY=
django4geonode_water  | ACCOUNT_AUTHENTICATION_METHOD=username_email
django4geonode_water  | MEMCACHED_LOCK_TIMEOUT=10
django4geonode_water  | HAYSTACK_ENGINE_INDEX_NAME=haystack
django4geonode_water  | OGC_REQUEST_TIMEOUT=30
django4geonode_water  | GEOSERVER_CORS_ALLOWED_HEADERS=*
django4geonode_water  | DJANGO_EMAIL_PORT=25
django4geonode_water  | DEFAULT_ANONYMOUS_DOWNLOAD_PERMISSION=True
django4geonode_water  | STATIC_ROOT=/mnt/volumes/statics/static/
django4geonode_water  | ADMIN_MODERATE_UPLOADS=False
django4geonode_water  | _=/usr/bin/env
django4geonode_water  | LETSENCRYPT_BASE_IMAGE_VERSION=2.6.0-latest
django4geonode_water  | GEONODE_DB_CONN_MAX_AGE=0
django4geonode_water  | TASTYPIE_APIKEY=
django4geonode_water  | BROKER_URL=amqp://guest:guest@rabbitmq:5672/
django4geonode_water  | ADMIN_EMAIL=None
django4geonode_water  | HOME=/root
django4geonode_water  | LANG=C.UTF-8
django4geonode_water  | HTTP_PORT=80
django4geonode_water  | RESOURCE_PUBLISHING=False
django4geonode_water  | DEFAULT_BACKEND_DATASTORE=datastore
django4geonode_water  | CLIENT_RESULTS_LIMIT=5
django4geonode_water  | outFormat=text/javascript
django4geonode_water  | MAPBOX_ACCESS_TOKEN=
django4geonode_water  | HAYSTACK_ENGINE_URL=http://elasticsearch:9200/
django4geonode_water  | BACKUPS_VOLUME_DRIVER=local
django4geonode_water  | SECRET_KEY=E~+IcXeL|7/&\n@=uM>UvZh,T&9N<98g_DHmd6D:I@WQRa|Br(
django4geonode_water  | LDAP_BIND_DN=uid=ldapinfo,cn=users,dc=ad,dc=example,dc=org
django4geonode_water  | ADMIN_PASSWORD=water
django4geonode_water  | DATABASE_PORT=5432
django4geonode_water  | GEONODE_DATABASE_SCHEMA=public
django4geonode_water  | ACCOUNT_OPEN_SIGNUP=True
django4geonode_water  | DJANGO_EMAIL_HOST_PASSWORD=
django4geonode_water  | DEFAULT_MAX_UPLOAD_SIZE=5368709120
django4geonode_water  | HAYSTACK_SEARCH_RESULTS_PER_PAGE=200
django4geonode_water  | DJANGO_SETTINGS_MODULE=geonode_water.settings
django4geonode_water  | GEOSERVER_JAVA_OPTS=-Djava.awt.headless=true -Xms4G -Xmx4G -Dgwc.context.suffix=gwc -XX:+UnlockDiagnosticVMOptions -XX:+LogVMOutput -XX:LogFile=/var/log/jvm.log -XX:PerfDataSamplingInterval=500 -XX:SoftRefLRUPolicyMSPerMB=36000 -XX:-UseGCOverheadLimit -XX:ParallelGCThreads=4 -Dfile.encoding=UTF8 -Djavax.servlet.request.encoding=UTF-8 -Djavax.servlet.response.encoding=UTF-8 -Duser.timezone=GMT -Dorg.geotools.shapefile.datetime=false -DGS-SHAPEFILE-CHARSET=UTF-8 -DGEOSERVER_CSRF_DISABLED=true -DPRINT_BASE_URL=http://10.0.2.54/geoserver/pdf -DALLOW_ENV_PARAMETRIZATION=true -Xbootclasspath/a:/usr/local/tomcat/webapps/geoserver/WEB-INF/lib/marlin-0.9.3-Unsafe.jar -Dsun.java2d.renderer=org.marlin.pisces.MarlinRenderingEngine
django4geonode_water  | GEOSERVER_LB_PORT=8080
django4geonode_water  | ACCOUNT_EMAIL_REQUIRED=True
django4geonode_water  | ACCOUNT_APPROVAL_REQUIRED=False
django4geonode_water  | SITEURL=http://10.0.2.54/
django4geonode_water  | MEMCACHED_ENABLED=False
django4geonode_water  | GEONODE_LB_HOST_IP=django
django4geonode_water  | LDAP_ENABLED=False
django4geonode_water  | OAUTH2_CLIENT_ID=v8Igz94In7fOc4V
django4geonode_water  | API_LIMIT_PER_PAGE=1000
django4geonode_water  | USER_ANALYTICS_ENABLED=True
django4geonode_water  | DJANGO_EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
django4geonode_water  | GEOSERVER_LOCATION=http://geoserver:8080/geoserver/
django4geonode_water  | LDAP_BIND_PASSWORD=<something_secret>
django4geonode_water  | DEFAULT_MAX_PARALLEL_UPLOADS_PER_USER=5
django4geonode_water  | ACCOUNT_EMAIL_VERIFICATION=none
django4geonode_water  | GEONODE_GEODATABASE_SCHEMA=public
django4geonode_water  | HTTP_HOST=10.0.2.54
django4geonode_water  | HAYSTACK_SEARCH=False
django4geonode_water  | GEONODE_INSTANCE_NAME=geonode
django4geonode_water  | NGINX_BASE_IMAGE_VERSION=1.25.3-latest
django4geonode_water  | EMAIL_ENABLE=False
django4geonode_water  | LETSENCRYPT_MODE=disabled
django4geonode_water  | HTTPS_PORT=443
django4geonode_water  | SHLVL=1
django4geonode_water  | HTTPS_HOST=
django4geonode_water  | OGC_REQUEST_POOL_MAXSIZE=10
django4geonode_water  | POSTGRES_USER=postgres
django4geonode_water  | ACCOUNT_EMAIL_CONFIRMATION_REQUIRED=False
django4geonode_water  | GEODATABASE_URL=postgis://geonode_water_data:water@db:5432/geonode_water_data
django4geonode_water  | GEOSERVER_DATA_BASE_IMAGE_VERSION=2.24.3-latest
django4geonode_water  | LDAP_GROUP_PROFILE_MEMBER_ATTR=uniqueMember
django4geonode_water  | DJANGO_EMAIL_USE_TLS=False
django4geonode_water  | RESTART_POLICY_CONDITION=on-failure
django4geonode_water  | DJANGO_EMAIL_HOST_USER=
django4geonode_water  | MONITORING_HOST_NAME=geonode
django4geonode_water  | GEONODE_GEODATABASE_PASSWORD=water
django4geonode_water  | IS_CELERY=False
django4geonode_water  | GEONODE_DATABASE_PASSWORD=water
django4geonode_water  | DATABASE_HOST=db
django4geonode_water  | GEOSERVER_PUBLIC_LOCATION=http://10.0.2.54/geoserver/
django4geonode_water  | GEONODE_DB_CONN_TOUT=5
django4geonode_water  | CREATE_LAYER=True
django4geonode_water  | GEOSERVER_ADMIN_PASSWORD=water
django4geonode_water  | INVOKE_LOG_STDOUT=true
django4geonode_water  | GEOSERVER_CORS_ENABLED=True
django4geonode_water  | GOOGLE_API_KEY=
django4geonode_water  | GEOIP_PATH=/mnt/volumes/statics/geoip.db
django4geonode_water  | LC_ALL=C.UTF-8
django4geonode_water  | GEOSERVER_BASE_IMAGE_VERSION=2.24.3-latest
django4geonode_water  | GEONODE_CLIENT_LAYER_PREVIEW_LIBRARY=mapstore
django4geonode_water  | GEONODE_GEODATABASE=geonode_water_data
django4geonode_water  | OGC_REQUEST_BACKOFF_FACTOR=0.3
django4geonode_water  | MEMCACHED_LOCATION=memcached:11211
django4geonode_water  | FORCE_REINIT=false
django4geonode_water  | GEOSERVER_ADMIN_USER=admin
django4geonode_water  | GEONODE_DATABASE=geonode_water
django4geonode_water  | PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
django4geonode_water  | DEFAULT_ANONYMOUS_VIEW_PERMISSION=True
django4geonode_water  | MONITORING_ENABLED=False
django4geonode_water  | GEONODE_LB_PORT=8000
django4geonode_water  | CORS_ALLOW_ALL_ORIGINS=True
django4geonode_water  | DOCKER_ENV=production
django4geonode_water  | DOCKER_API_VERSION=1.24
django4geonode_water  | GEOSERVER_WEB_UI_LOCATION=http://10.0.2.54/geoserver/
django4geonode_water  | LDAP_GROUP_SEARCH_DN=cn=groups,dc=ad,dc=example,dc=org
django4geonode_water  | POSTGRESQL_MAX_CONNECTIONS=200
django4geonode_water  | DEFAULT_FROM_EMAIL=None
django4geonode_water  | ACCOUNT_CONFIRM_EMAIL_ON_GET=False
django4geonode_water  | DEBUG=False
django4geonode_water  | MEDIA_ROOT=/mnt/volumes/statics/uploaded/
django4geonode_water  | OAUTH2_CLIENT_SECRET=Qxocry2guRodQHv
django4geonode_water  | SESSION_EXPIRED_CONTROL_ENABLED=True
django4geonode_water  | LDAP_SERVER_URL=ldap://<the_ldap_server>
django4geonode_water  | MONITORING_DATA_TTL=365
django4geonode_water  | update tasks done
django4geonode_water  | DOCKER_API_VERSION=1.24
django4geonode_water  | POSTGRES_USER=postgres
django4geonode_water  | POSTGRES_PASSWORD=water
django4geonode_water  | DATABASE_URL=postgis://geonode_water:water@db:5432/geonode_water
django4geonode_water  | GEODATABASE_URL=postgis://geonode_water_data:water@db:5432/geonode_water_data
django4geonode_water  | SITEURL=http://10.0.2.54/
django4geonode_water  | ALLOWED_HOSTS=['django', '10.0.2.54', 'django', 'django:8000', 'geonode', 'django']
django4geonode_water  | GEOSERVER_PUBLIC_LOCATION=http://10.0.2.54/geoserver/
django4geonode_water  | MONITORING_ENABLED=False
django4geonode_water  | MONITORING_HOST_NAME=geonode
django4geonode_water  | MONITORING_SERVICE_NAME=local-geonode
django4geonode_water  | MONITORING_DATA_TTL=365
django4geonode_water  | ...

from geonode-project.

oggioniale avatar oggioniale commented on August 20, 2024
django4geonode_water  | Operations to perform:
django4geonode_water  |   Apply all migrations: account, actstream, admin, announcements, auth, avatar, base, br, contenttypes, django_celery_results, documents, dynamic_models, favorite, geoapps, geonode_client, geonode_mapstore_client, geonode_resource_processing, geonode_themes, groups, guardian, harvesting, importer, invitations, layers, management_commands_http, maps, monitoring, oauth2_provider, people, pinax_notifications, processing, resource, sequences, services, sessions, sites, socialaccount, taggit, tastypie, upload, user_messages
django4geonode_water  | Running migrations:
django4geonode_water  |   No migrations to apply.
django4geonode_water  |   Your models in app(s): 'base', 'upload' have changes that are not yet reflected in a migration, and so won't be applied.
django4geonode_water  |   Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
django4geonode_water  | Operations to perform:
django4geonode_water  |   Apply all migrations: account, actstream, admin, announcements, auth, avatar, base, br, contenttypes, django_celery_results, documents, dynamic_models, favorite, geoapps, geonode_client, geonode_mapstore_client, geonode_resource_processing, geonode_themes, groups, guardian, harvesting, importer, invitations, layers, management_commands_http, maps, monitoring, oauth2_provider, people, pinax_notifications, processing, resource, sequences, services, sessions, sites, socialaccount, taggit, tastypie, upload, user_messages
django4geonode_water  | Running migrations:
django4geonode_water  |   No migrations to apply.
django4geonode_water  |   Your models in app(s): 'base', 'upload' have changes that are not yet reflected in a migration, and so won't be applied.
django4geonode_water  |   Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
django4geonode_water  | Unknown command: 'rebuild_index'
django4geonode_water  | Type 'manage.py help' for usage.
django4geonode_water  | migrations tasks done
django4geonode_water  | **********************prepare fixture***************************
django4geonode_water  | prepare tasks done
django4geonode_water  | **************************statics*******************************
django4geonode_water  | Found another file with the destination path 'package.json'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'admin/js/actions.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'admin/js/admin/DateTimeShortcuts.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'admin/js/admin/RelatedObjectLookups.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'build.sh'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'package.json'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'gruntfile.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'static_dependencies.json'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'mapstorestyle/img/s2cloudless-s2cloudless.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'mapstorestyle/img/bing_road_on_demand.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'mapstorestyle/img/bing_canvas_dark.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'mapstorestyle/img/bing_aerial_w_labels.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/base/base.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/status/main.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/status/UploadSession.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/status/status.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/tests/test.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/tests/run-tests.sh'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/tests/SpecRunner.html'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/templates/upload.html'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/templates/cart.html'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/messages/message_recipients_autocomplete_es5.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/messages/message_recipients_autocomplete.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/messages/message_recipients_autocomplete_es5.js.map'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/OpenLayers.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/ext/geonode_ol_ext.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/style.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/style.mobile.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/google.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/ie6-style.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/add_point_off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/move_feature_off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/add_point_on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/draw_point_on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/save_features_off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/blank.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/save_features_on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/draw_line_on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/ruler.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/panning-hand-off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/drag-rectangle-on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/view_previous_on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/pan-panel-NOALPHA.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/move_feature_on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/zoom-panel-NOALPHA.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/navigation_history.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/pan_off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/pan-panel.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/draw_polygon_on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/draw_polygon_off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/pan_on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/draw_line_off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/editing_tool_bar.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/remove_point_on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/zoom-panel.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/close.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/view_next_on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/view_previous_off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/view_next_off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/panning-hand-on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/overview_replacement.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/draw_point_off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/drag-rectangle-off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/theme/default/img/remove_point_off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/deprecated.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/TileManager.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/WPSClient.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Projection.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Icon.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Filter.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Strategy.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Geometry.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Tween.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Symbolizer.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/WPSProcess.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Style.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Util.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Marker.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/BaseTypes.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/StyleMap.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Animation.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Feature.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Renderer.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Tile.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Kinetic.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Spherical.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Popup.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Events.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Map.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Console.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Rule.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/SingleFile.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Request.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Style2.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Popup/Anchored.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Popup/FramedCloud.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Popup/Framed.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Strategy/Fixed.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Strategy/Filter.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Strategy/Cluster.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Strategy/Save.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Strategy/Paging.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Strategy/BBOX.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Strategy/Refresh.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/BaseTypes/Class.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/BaseTypes/Size.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/BaseTypes/Element.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/BaseTypes/Date.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/BaseTypes/Bounds.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/BaseTypes/Pixel.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/BaseTypes/LonLat.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Symbolizer/Raster.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Symbolizer/Text.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Symbolizer/Point.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Symbolizer/Polygon.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Symbolizer/Line.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/CSWGetDomain.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/Atom.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/GeoJSON.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/GML.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/Filter.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/XLS.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/Text.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/OWSContext.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/SLD.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/SOSCapabilities.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WCSCapabilities.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WFSCapabilities.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WCSGetCoverage.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/OSM.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/EncodedPolyline.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/GPX.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/JSON.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WPSCapabilities.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WPSDescribeProcess.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/SOSGetObservation.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/QueryStringFilter.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSGetFeatureInfo.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/Context.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/GeoRSS.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSCapabilities.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/CSWGetRecords.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WFSDescribeFeatureType.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/CQL.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WKT.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/KML.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/OGCExceptionReport.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMC.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/ArcXML.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WFS.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMTSCapabilities.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/XML.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/OWSCommon.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSDescribeLayer.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WFST.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WPSExecute.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/SLD/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/SLD/v1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/ArcXML/Features.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WCSCapabilities/v1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMC/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMC/v1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMC/v1_1_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/XLS/v1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/XLS/v1_1_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/OWSContext/v0_3_1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/XML/VersionedOGC.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSCapabilities/v1_1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSCapabilities/v1_3.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSCapabilities/v1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WFSCapabilities/v1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/Filter/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/Filter/v1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/Filter/v1_1_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/GML/v2.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/GML/v3.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/GML/Base.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WFST/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WFST/v1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WFST/v1_1_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/OWSCommon/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/OWSCommon/v1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/OWSCommon/v1_1_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/cs-CZ.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/hu.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/gsw.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/nn.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/vi.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/it.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/ca.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/oc.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/ja.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/da-DK.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/el.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/pt-BR.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/de.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/sk.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/es.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/fi.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/nl.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/io.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/fr.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/be-tarask.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/pt.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/ar.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/id.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/zh-TW.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/lt.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/sv-SE.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/gl.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/fur.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/pl.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/ro.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/hr.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/is.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/ia.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/bg.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/en-CA.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/te.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/km.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/hsb.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/ksh.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/nb.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/ru.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/br.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/zh-CN.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/nds.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Lang/en.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Geometry/Curve.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Geometry/MultiPoint.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Geometry/MultiPolygon.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Geometry/Point.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Geometry/Polygon.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Geometry/LinearRing.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Geometry/MultiLineString.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Geometry/LineString.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Geometry/Collection.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Marker/Box.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Feature/Vector.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/ZoomToMaxExtent.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Zoom.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/ArgParser.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/PanZoom.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Measure.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/CacheWrite.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/ZoomOut.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Permalink.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/LayerSwitcher.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/PinchZoom.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/GetFeature.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/DrawFeature.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/PanPanel.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/WMSGetFeatureInfo.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/UTFGrid.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/DragPan.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/ModifyFeature.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Panel.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/MousePosition.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/OverviewMap.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/ZoomPanel.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/DragFeature.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/NavigationHistory.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/TransformFeature.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Button.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/CacheRead.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/KeyboardDefaults.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/ZoomIn.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/PanZoomBar.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Scale.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Split.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/EditingToolbar.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Pan.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Snapping.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Attribution.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/ZoomBox.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/SLDSelect.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/SelectFeature.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Geolocate.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Graticule.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/NavToolbar.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/TouchNavigation.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/WMTSGetFeatureInfo.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/ScaleLine.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Control/Navigation.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/ArcGIS93Rest.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/PointTrack.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Bing.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/KaMap.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/PointGrid.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Grid.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Text.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/ArcGISCache.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/WMS.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/EventPane.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/OSM.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Boxes.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/TileCache.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/MapGuide.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/WMTS.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/MapServer.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/UTFGrid.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/HTTPRequest.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/GeoRSS.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Google.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/KaMapCache.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/FixedZoomLevels.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Zoomify.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/SphericalMercator.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/WorldWind.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Markers.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/XYZ.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Vector.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Image.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/ArcIMS.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/TMS.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Vector/RootContainer.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Layer/Google/v3.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Events/featureclick.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Events/buttonclick.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/Hover.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/Drag.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/Path.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/Box.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/RegularPolygon.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/Point.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/Feature.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/MouseWheel.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/Polygon.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/Click.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/Pinch.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Handler/Keyboard.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Util/vendorPrefix.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Filter/FeatureId.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Filter/Spatial.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Filter/Function.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Filter/Comparison.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Filter/Logical.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol/SOS.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol/Script.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol/HTTP.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol/CSW.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol/WFS.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol/SOS/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol/WFS/v1_0_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol/WFS/v1.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol/WFS/v1_1_0.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Protocol/CSW/v2_0_2.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Tile/UTFGrid.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Tile/Image.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Tile/Image/IFrame.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Request/XMLHttpRequest.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Renderer/SVG.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Renderer/Elements.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Renderer/Canvas.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/OpenLayers/Renderer/VML.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Rico/Corner.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Rico/Color.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Rico/license.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Firebug/firebug.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Firebug/errorIcon.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Firebug/firebugx.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Firebug/infoIcon.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Firebug/license.txt'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Firebug/firebug.html'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Firebug/firebug.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Firebug/readme.txt'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/ol-2.13/lib/Firebug/warningIcon.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/upload/LayerInfo.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/upload/time.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/upload/path.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/upload/FileType.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/upload/common.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/upload/FileTypes.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/upload/srs.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/upload/main.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/upload/csv.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/upload/upload.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/crop_widget/crop_widget_es5.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/crop_widget/crop_widget_es5.js.map'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/crop_widget/crop_widget.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/utils/thumbnail.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/utils/utils.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/utils/batch_ops.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/jszip/preprocess.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/jszip/preview.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/jszip/jszip-utils.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/jszip/jszip.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/proj4js/proj4.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/cookie-law-info/cookie-law-info-public.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/services/resources_harvest.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/search/autocomplete.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/search/search.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/search/explore.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/js/search/cart.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/glyphicons-halflings-regular.ttf'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/glyphicons-halflings-regular.eot'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/glyphicons-halflings-regular.svg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/lato_light.ttf'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/glyphicons-halflings-regular.woff'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/lato_regular.ttf'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/glyphicons-halflings-regular.woff2'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/lato_bold.ttf'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/fontawesome-webfont.woff'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/fontawesome-webfont.eot'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/fontawesome-webfont.woff2'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/FontAwesome.otf'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/fontawesome-webfont.ttf'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/fonts/fontawesome-webfont.svg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/ext-compatibility.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/social_twitter.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/font-awesome.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/geonode-rtl.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/font-awesome.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/crop_widget.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/map_leaflet.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/geonode-rtl.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/fileuploadfield.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/base.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/cookie-law-info/cookie-law-info-gdpr.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/css/cookie-law-info/cookie-law-info-public.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/elbow-plus-nl.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/missing_thumb.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/light_gray.jpg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/panel-handle.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/row-editor-btns.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/glyphicons-halflings.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/summary-bg.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/calendar_in.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/summary-group-bg.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/avatar.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/left2.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/default-avatar.jpg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/geonode_icon.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/favicon.ico'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/facebook.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/pointer.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/logo.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/top2.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/up2.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/right2.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/logo-bg.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/row-editor-bg.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/arrows_gr_sm.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/twitter.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/bottom2.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/loading.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/spinner-split.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/x-grouptabs-corners.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/elbow-minus-nl.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/spinner.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/down2.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/google_plus.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/img/glyphicons-halflings-white.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/less/fonts.less'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/less/base.less'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/less/geonode-rtl.less'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/less/variables.less'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/less/crop_widget.less'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'geonode/less/bootstrap.less'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/text.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/json2.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/alert.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/affix.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/select.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/moment-with-locales.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap-treeview.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/jquery.raty.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap-typeahead.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/modal.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/angular.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/handlebars.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap-datetimepicker.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/transition.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap-select.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/jquery-ui.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/tinymce.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/dropdown.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/underscore.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/tagify.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap-toggle.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/easy-button.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/openlayers-plugins.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap-datetimepicker.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/jquery-ui.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/angular-cookies.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/ol.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/angular-leaflet-directive.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/angular.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/jquery.dataTables.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/jquery.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/select2.full.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap-table.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/assets.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap-tokenfield.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/tooltip.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/cropper.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/waypoints.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/angular-sanitize.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/moment-timezone-with-data.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/jquery.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/collapse.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/jquery.tree-multiselect.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/require.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/angular-openlayers-directive.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/handlebars.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/clipboard.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/button.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/jq-ajax-progress.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/popover.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/clipboard.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/list.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/fastselect.standalone.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/bootstrap-multiselect.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/carousel.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/tab.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/jquery.timeago.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/ZeroClipboard.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/icons/default/icons.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/icons/default/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/icons/default/icons.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/skin.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/content.inline.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/skin.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/skin.mobile.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/content.mobile.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/content.mobile.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/content.inline.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/content.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/skin.mobile.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/content.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide/fonts/tinymce-mobile.woff'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/skin.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/content.inline.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/skin.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/skin.mobile.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/content.mobile.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/content.mobile.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/content.inline.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/content.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/skin.mobile.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/content.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/ui/oxide-dark/fonts/tinymce-mobile.woff'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/content/writer/content.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/content/writer/content.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/content/document/content.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/content/document/content.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/content/dark/content.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/content/dark/content.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/content/default/content.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/skins/content/default/content.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/themes/mobile/theme.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/themes/mobile/theme.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/themes/mobile/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/themes/silver/theme.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/themes/silver/theme.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/themes/silver/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/textcolor/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/textcolor/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/textcolor/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/bbcode/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/bbcode/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/bbcode/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/nonbreaking/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/nonbreaking/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/nonbreaking/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/pagebreak/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/pagebreak/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/pagebreak/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/wordcount/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/wordcount/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/wordcount/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/table/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/table/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/table/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/media/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/media/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/media/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/contextmenu/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/contextmenu/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/contextmenu/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/save/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/save/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/save/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/autoresize/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/autoresize/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/autoresize/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/codesample/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/codesample/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/codesample/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/fullpage/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/fullpage/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/fullpage/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/colorpicker/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/colorpicker/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/colorpicker/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/visualchars/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/visualchars/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/visualchars/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/searchreplace/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/searchreplace/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/searchreplace/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/autosave/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/autosave/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/autosave/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/insertdatetime/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/insertdatetime/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/insertdatetime/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/tabfocus/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/tabfocus/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/tabfocus/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/noneditable/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/noneditable/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/noneditable/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/template/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/template/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/template/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/spellchecker/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/spellchecker/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/spellchecker/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/legacyoutput/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/legacyoutput/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/legacyoutput/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/anchor/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/anchor/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/anchor/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/charmap/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/charmap/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/charmap/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/autolink/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/autolink/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/autolink/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/help/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/help/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/help/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/preview/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/preview/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/preview/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/imagetools/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/imagetools/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/imagetools/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/directionality/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/directionality/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/directionality/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/print/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/print/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/print/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/hr/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/hr/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/hr/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/toc/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/toc/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/toc/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/textpattern/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/textpattern/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/textpattern/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/importcss/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/importcss/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/importcss/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/fullscreen/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/fullscreen/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/fullscreen/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/advlist/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/advlist/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/advlist/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/code/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/code/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/code/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/link/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/link/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/link/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/paste/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/paste/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/paste/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/image/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/image/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/image/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/quickbars/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/quickbars/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/quickbars/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/lists/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/lists/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/lists/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/emoticons/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/emoticons/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/emoticons/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/emoticons/js/emojis.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/emoticons/js/emojis.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/visualblocks/plugin.min.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/visualblocks/plugin.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/js/plugins/visualblocks/index.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/fonts/glyphicons-halflings-regular.ttf'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/fonts/glyphicons-halflings-regular.eot'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/fonts/glyphicons-halflings-regular.svg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/fonts/glyphicons-halflings-regular.woff'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/fonts/glyphicons-halflings-regular.woff2'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/tagify.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/bootstrap.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/jquery.raty.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/jquery.dataTables.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/bootstrap-datetimepicker.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/jquery-ui.structure.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/bootstrap-table.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/fastselect.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/openlayers-plugins.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/select2.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/cropper.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/easy-button.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/jquery-ui.theme.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/bootstrap-tokenfield.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets.min.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/bootstrap-select.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/fullscreen.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/bootstrap-toggle.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/bootstrap-treeview.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/ol.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/bootstrap-multiselect.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/rulers.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/trash.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/trash.svg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/cancel.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/leaflet-measure.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/rulers.svg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/focus.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/cancel.svg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/start.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/check.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/start.svg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/check.svg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/assets/focus.svg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/fonts/raty.woff'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/fonts/raty.ttf'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/fonts/raty.svg'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/css/fonts/raty.eot'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/ui-icons_555555_256x240.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/pan-down.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/clock.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/rulers.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/pan-up.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/star-on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/ui-icons_777777_256x240.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/trash.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/sort_asc.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/layers.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/star-half.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/cancel-off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/marker-icon.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/cancel.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/sort_desc.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/leaflet-measure.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/arrow-left_000000_14.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/home_bbbbbb_14.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/sort_asc_disabled.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/ui-icons_777620_256x240.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/pan-right.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/layers-2x.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/focus.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/marker-shadow.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/ui-icons_cc0000_256x240.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/arrow-right_bbbbbb_14.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/marker-icon-2x.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/ui-icons_444444_256x240.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/sort_desc_disabled.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/img_01.gif'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/ZeroClipboard.swf'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/arrow-right_000000_14.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/fullscreen.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/start.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/check.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/ui-icons_ffffff_256x240.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/star-off.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/pan-left.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/home_000000_14.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/cancel-on.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/[email protected]'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/sort_both.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'lib/img/arrow-left_bbbbbb_14.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'mapstorestyle/img/s2cloudless-s2cloudless.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'package.json'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'gulpfile.js'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'README'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'js/README'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'css/site_base.css'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'img/bing_road_on_demand.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'img/bing_canvas_dark.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'img/README'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'img/bing_aerial_w_labels.png'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | Found another file with the destination path 'less/site_base.less'. It will be ignored since only the first encountered file is collected. If this is not what you want, make sure every static file has a unique path.
django4geonode_water  | 
django4geonode_water  | 3770 static files copied to '/mnt/volumes/statics/static'.
django4geonode_water  | statics tasks done
django4geonode_water  | Executing UWSGI server uwsgi --ini /usr/src/geonode_water/uwsgi.ini for Production
django4geonode_water  | -----------------------------------------------------
django4geonode_water  | FINISHED DJANGO ENTRYPOINT --------------------------
django4geonode_water  | -----------------------------------------------------
django4geonode_water  | got command uwsgi --ini /usr/src/geonode_water/uwsgi.ini
django4geonode_water  | [uWSGI] getting INI configuration from /usr/src/geonode_water/uwsgi.ini

from geonode-project.

oggioniale avatar oggioniale commented on August 20, 2024

it is solved for me

from geonode-project.

kikislater avatar kikislater commented on August 20, 2024

The error reported by the django container is (generally) a false error that we've started seeing recently. We are investigating.

If you execute docker compose up -d again it should report it fine.

Like a race condition, right I got this once !

from geonode-project.

DanielAraldi avatar DanielAraldi commented on August 20, 2024

Hi, I used geonode-project in version 4.2.4, it is solved for me.

from geonode-project.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.