当前位置: 首页>>代码示例>>Python>>正文


Python settings.SILENCED_SYSTEM_CHECKS属性代码示例

本文整理汇总了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},
    } 
开发者ID:mozilla-services,项目名称:python-dockerflow,代码行数:12,代码来源:views.py

示例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 
开发者ID:matthiask,项目名称:django-user-messages,代码行数:32,代码来源:apps.py


注:本文中的django.conf.settings.SILENCED_SYSTEM_CHECKS属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。