Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
engine
Commits
32f96987
Commit
32f96987
authored
6 months ago
by
Martina Müller
Browse files
Options
Downloads
Patches
Plain Diff
refactor: add error handling for unknown channel type,
#146
parent
cb4e7164
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!47
Refactor: add error handling for unknown channel type
Pipeline
#8544
passed
6 months ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
src/aura_engine/core/channels.py
+7
-2
7 additions, 2 deletions
src/aura_engine/core/channels.py
with
8 additions
and
2 deletions
CHANGELOG.md
+
1
−
0
View file @
32f96987
...
...
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
-
added error handling if no matching channel type is found
-
...
### Changed
...
...
This diff is collapsed.
Click to expand it.
src/aura_engine/core/channels.py
+
7
−
2
View file @
32f96987
...
...
@@ -601,6 +601,8 @@ class ChannelFactory:
Returns:
(GenericChannel): A concrete implementation of the generic channel
Raises:
ValueError: If no matching channel type is found
"""
if
channel_name
in
ChannelType
.
QUEUE
.
channels
:
self
.
logger
.
debug
(
f
"
Create new QUEUE channel
'
{
channel_name
}
'"
)
...
...
@@ -611,8 +613,11 @@ class ChannelFactory:
if
channel_name
in
ChannelType
.
LIVE
.
channels
:
self
.
logger
.
debug
(
f
"
Create new LINE channel
'
{
channel_name
}
'"
)
return
LineChannel
(
channel_index
,
channel_name
,
mixer
)
# FIXME: Error handling when no ChannelType was found
self
.
logger
.
error
(
"
No ChannelType found! Now stuff is not working as intended
"
)
error_message
=
(
f
"
No valid ChannelType found for channel
'
{
channel_name
}
'
. Not working as intended.
"
)
self
.
logger
.
error
(
error_message
)
raise
ValueError
(
error_message
)
class
PlayoutStatusResponse
(
StrEnum
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment