This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git
The following commit(s) were added to refs/heads/master by this push:
new cb12f47c7 Clarify service ranking order
cb12f47c7 is described below
commit cb12f47c7b55bd03ccf0951c112df68a40d67fd2
Author: Konrad Windszus <[email protected]>
AuthorDate: Wed May 11 19:33:06 2022 +0200
Clarify service ranking order
---
src/main/jbake/content/documentation/the-sling-engine/servlets.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/jbake/content/documentation/the-sling-engine/servlets.md
b/src/main/jbake/content/documentation/the-sling-engine/servlets.md
index 644ee7d16..f25c3484b 100644
--- a/src/main/jbake/content/documentation/the-sling-engine/servlets.md
+++ b/src/main/jbake/content/documentation/the-sling-engine/servlets.md
@@ -300,7 +300,7 @@ The following order rules are being followed when trying to
resolve a servlet fo
1. The one with the highest number of matching selectors + extension
2. The one which is registered to a resource type closest to the requested one
(when traversing the resource type hierarchy up), refer to section [Resource
Type Inheritance](#resource-type-inheritance) for more details
-3. The one with the highest `service.ranking` property
+3. The one with the highest service ranking according to [OSGi Core 8 Chapter
5.2.6](https://docs.osgi.org/specification/osgi.core/8.0.0/framework.service.html#framework.service.servicerankingorder)
In case of an `OptingServlet` not matching the next candidate is being used.