Skip to content

Commit

Permalink
Merge branch 'hotfix/1.12.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Hector Castro committed May 3, 2016
2 parents 1ac5b14 + 9ac87df commit 3a46f98
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion deployment/ansible/roles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
- src: azavea.mapnik
version: 0.1.0
- src: azavea.beaver
version: 0.1.3
version: 1.0.1
- src: azavea.java
version: 0.2.1
- src: azavea.docker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
owner=root
group=mmw
mode=0750
with_dict: app_config
with_dict: "{{ app_config }}"
notify:
- Restart mmw-app

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
owner=root
group=mmw
mode=0750
with_dict: envdir_config
with_dict: "{{ envdir_config }}"
notify:
- Restart mmw-app
- Restart Celery
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
beaver_version: "33.3.0"
beaver_version: "36.2.0"
beaver_redis_url: "redis://{{ redis_host }}:{{ redis_port }}/0"
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
owner=root
group=mmw
mode=0750
with_dict: app_config
with_dict: "{{ app_config }}"
notify:
- Restart Celery
1 change: 1 addition & 0 deletions deployment/packer/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
"sleep 5",
"sudo apt-get update -qq",
"sudo apt-get install python-pip python-dev -y",
"sudo pip install paramiko==1.16.0",
"sudo pip install ansible==2.0.1.0",
"sudo /bin/sh -c 'echo {{user `version`}} > /srv/version.txt'"
]
Expand Down
9 changes: 2 additions & 7 deletions src/mmw/mmw/settings/layer_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,8 @@
{
'type': 'mapbox',
'display': 'Streets',
'url': 'https://{s}.tiles.mapbox.com/v3/ctaylor.lg2deoc9'
'/{z}/{x}/{y}.png',
'attribution': 'Map data &copy; <a href="http://openstreetmap.org">'
'OpenStreetMap</a> contributors, '
'<a href="http://creativecommons.org/licenses/by-sa/'
'2.0/">CC-BY-SA</a>, Imagery &copy; '
'<a href="http://mapbox.com">Mapbox</a>',
'url': 'https://{s}.tile.thunderforest.com/landscape/{z}/{x}/{y}.png',
'attribution': '&copy; <a href="http://www.thunderforest.com/">Thunderforest</a>, &copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>',
'maxZoom': 18,
'default': True,
'basemap': True,
Expand Down

0 comments on commit 3a46f98

Please sign in to comment.