Skip to content

Commit

Permalink
Merge branch 'master' into add_scout_for_tomte
Browse files Browse the repository at this point in the history
  • Loading branch information
rannick authored Aug 28, 2024
2 parents 4701f36 + e663e09 commit 5347b83
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 62.1.10
current_version = 62.1.11
commit = True
tag = True
tag_name = v{new_version}
Expand Down
2 changes: 1 addition & 1 deletion cg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__title__ = "cg"
__version__ = "62.1.10"
__version__ = "62.1.11"
5 changes: 4 additions & 1 deletion cg/meta/orders/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
from cg.apps.osticket import OsTicket
from cg.meta.orders.ticket_handler import TicketHandler
from cg.models.orders.order import OrderIn, OrderType
from cg.services.orders.submitters.order_submitter_registry import OrderSubmitterRegistry
from cg.services.orders.submitters.order_submitter_registry import (
OrderSubmitterRegistry,
)
from cg.store.store import Store

LOG = logging.getLogger(__name__)
Expand Down Expand Up @@ -41,6 +43,7 @@ def submit(self, project: OrderType, order_in: OrderIn, user_name: str, user_mai
Main entry point for the class towards interfaces that implements it.
"""
submit_handler = self.submitter_registry.get_order_submitter(project)
submit_handler.order_validation_service.validate_order(order_in)
# detect manual ticket assignment
ticket_number: str | None = TicketHandler.parse_ticket_number(order_in.name)
if not ticket_number:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "cg"
version = "62.1.10"
version = "62.1.11"
description = "Clinical Genomics command center"
authors = ["Clinical Genomics <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 5347b83

Please sign in to comment.