gouthamr: carloss_ I was looking into this bug: https://bugs.launchpad.net/manila/+bug/2023754 I reviewed the code ``` def _get_next_link(self, request, identifier): """Return href string with proper limit and marker params.""" params = request.params.copy() params["marker"] = identifier prefix = self._update_link_prefix(request.application_url, CONF.osapi_share_base_URL) url = os.path.join(prefix, self._get_project_id(request), self._collection_name) return "%s?%s" % (url, dict_to_query_str(params))def _get_next_link(self, request, identifier): """Return href string with proper limit and marker params.""" params = request.params.copy() params["marker"] = identifier prefix = self._update_link_prefix(request.application_url, CONF.osapi_share_base_URL) url = os.path.join(prefix, self._get_project_id(request), self._collection_name) return "%s?%s" % (url, dict_to_query_str(params)) ``` I was wondering if I need to check if the `application_url` contains `share_replicas` then rewrite it hyphenated? What do you suggest would be the best approach to resolve the bug? I could not find a consumer function where the check can be made or configured. Please clarify