Skip to content

Commit

Permalink
minor: release V3.28.8
Browse files Browse the repository at this point in the history
  • Loading branch information
normal-wls authored and ZhuoZhuoCrayon committed May 15, 2023
1 parent 704dc12 commit 203391a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ repos:
hooks:
- id: black
language_version: python3.6
- repo: https://github.com/pycqa/isort
rev: 5.6.4
hooks:
- id: isort
args: ["--profile", "black", "--filter-files"]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.1.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ is_use_celery: True
author: 蓝鲸智云
introduction: 标准运维是通过一套成熟稳定的任务调度引擎,把在多系统间的工作整合到一个流程,助力运维实现跨系统调度自动化的SaaS应用。
introduction_en: SOPS is a SaaS application that utilizes a set of mature and stable task scheduling engines to help realize cross-system scheduling automation, and integrates the work among multiple systems into a single process.
version: 3.28.7
version: 3.28.8
category: 运维工具
language_support: 中文
desktop:
Expand Down
2 changes: 1 addition & 1 deletion app_desc.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
spec_version: 2
app_version: "3.28.7"
app_version: "3.28.8"
app:
region: default
bk_app_code: bk_sops
Expand Down
19 changes: 10 additions & 9 deletions config/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
specific language governing permissions and limitations under the License.
"""
import datetime
import sys
import importlib
import sys
from urllib.parse import urlparse

from django.utils.translation import ugettext_lazy as _

from blueapps.conf.log import get_logging_config_dict
from bamboo_engine.config import Settings as BambooSettings
from blueapps.conf.default_settings import * # noqa
from blueapps.conf.log import get_logging_config_dict
from blueapps.opentelemetry.utils import inject_logging_trace_info
from gcloud.exceptions import ApiRequestError
from django.utils.translation import ugettext_lazy as _
from pipeline.celery.queues import ScalableQueues
from bamboo_engine.config import Settings as BambooSettings

import env
from gcloud.exceptions import ApiRequestError

# 这里是默认的 INSTALLED_APPS,大部分情况下,不需要改动
# 如果你已经了解每个默认 APP 的作用,确实需要去掉某些 APP,请去掉下面的注释,然后修改
Expand Down Expand Up @@ -203,7 +203,7 @@
# mako模板中:<script src="/a.js?v=${ STATIC_VERSION }"></script>
# 如果静态资源修改了以后,上线前改这个版本号即可

STATIC_VERSION = "3.28.7"
STATIC_VERSION = "3.28.8"
DEPLOY_DATETIME = datetime.datetime.now().strftime("%Y%m%d%H%M%S")

STATICFILES_DIRS = [os.path.join(BASE_DIR, "static")]
Expand Down Expand Up @@ -480,9 +480,10 @@ def _(s):

from pipeline.celery.settings import * # noqa
from pipeline.eri.celery import queues as eri_queues # noqa
from gcloud.taskflow3.domains.queues import PrepareAndStartTaskQueueResolver # noqa
from gcloud.taskflow3.celery import settings as taskflow3_celery_settings # noqa

from gcloud.contrib.cleaner import settings as cleaner_settings # noqa
from gcloud.taskflow3.celery import settings as taskflow3_celery_settings # noqa
from gcloud.taskflow3.domains.queues import PrepareAndStartTaskQueueResolver # noqa

API_TASK_QUEUE_NAME_V2 = "api"
PERIODIC_TASK_QUEUE_NAME_V2 = "periodic_task"
Expand Down

0 comments on commit 203391a

Please sign in to comment.