Remove custom_path from formula

This path handled in source code side,
so we doesn't need it anymore. This patch
needed for fixing heatmaps

Change-Id: I47b611f5cc73dc88423f8bfbe2dbfec5cacebe7f
diff --git a/devops_portal/map.jinja b/devops_portal/map.jinja
index b74d526..f6d588a 100644
--- a/devops_portal/map.jinja
+++ b/devops_portal/map.jinja
@@ -5,11 +5,7 @@
 
 {% macro service_url(endpoint) -%}
 {%- if endpoint.get('https', False) -%}https://{%- else -%}http://{%- endif -%}
-{%- if endpoint.get('custom_path', None) -%}
-{{ endpoint.address }}:{{ endpoint.port }}/{{ endpoint.custom_path }}
-{%- else -%}
 {{ endpoint.address }}:{{ endpoint.port }}/
-{%- endif -%}
 {%- endmacro %}
 
 {% macro service_url_dns(endpoint) -%}