Skip to content
Snippets Groups Projects
Commit f402dfc0 authored by Vincent Massol's avatar Vincent Massol
Browse files

[Misc] Clarify the reason for a single cache even though there can be multiple config wiki pages

parent e264a209
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,9 @@ public class MainWikiSendMailConfigClassDocumentConfigurationSource
@Override
protected String getCacheId()
{
// Note: we use a single cache id because this module is installed on the root namespace and thus there's
// only a single MainWikiSendMailConfigClassDocumentConfigurationSource component in the farm (and thus a single
// cache).
return "configuration.document.mail.send.mainwiki";
}
......
......@@ -42,6 +42,9 @@ public class SendMailConfigClassDocumentConfigurationSource
@Override
protected String getCacheId()
{
// Note: we use a single cache id because this module is installed on the root namespace and thus there's
// only a single SendMailConfigClassDocumentConfigurationSource component in the farm (and thus a single
// cache).
return "configuration.document.mail.send";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment