本文整理匯總了Python中django.conf.settings.SILENCED_SYSTEM_CHECKS屬性的典型用法代碼示例。如果您正苦於以下問題:Python settings.SILENCED_SYSTEM_CHECKS屬性的具體用法?Python settings.SILENCED_SYSTEM_CHECKS怎麽用?Python settings.SILENCED_SYSTEM_CHECKS使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類django.conf.settings
的用法示例。
在下文中一共展示了settings.SILENCED_SYSTEM_CHECKS屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: heartbeat_check_detail
# 需要導入模塊: from django.conf import settings [as 別名]
# 或者: from django.conf.settings import SILENCED_SYSTEM_CHECKS [as 別名]
def heartbeat_check_detail(check):
errors = check(app_configs=None)
errors = list(filter(lambda e: e.id not in settings.SILENCED_SYSTEM_CHECKS, errors))
level = max([0] + [e.level for e in errors])
return {
"status": level_to_text(level),
"level": level,
"messages": {e.id: e.msg for e in errors},
}
示例2: check_context_processors
# 需要導入模塊: from django.conf import settings [as 別名]
# 或者: from django.conf.settings import SILENCED_SYSTEM_CHECKS [as 別名]
def check_context_processors(app_configs, **kwargs):
errors = []
if VERSION < (2, 2):
# The admin.E404 check has been introduced in the Django 2.2 cycle.
return errors
for engine in engines.all():
if isinstance(engine, DjangoTemplates):
django_templates_instance = engine.engine
break
else:
django_templates_instance = None
if django_templates_instance:
if (
"django.contrib.messages.context_processors.messages"
not in django_templates_instance.context_processors
and "admin.E404" not in settings.SILENCED_SYSTEM_CHECKS
):
errors.append(
checks.Error(
"If using 'user_messages.context_processors.messages'"
" instead of the official messages context processor"
" you have to add 'admin.E404' to SILENCED_SYSTEM_CHECKS.",
id="user_messages.E001",
)
)
return errors