Skip to content
Snippets Groups Projects
Commit 9d4c26a7 authored by David Trattnig's avatar David Trattnig
Browse files

fix: wrong resource class assignment

parent 4f103e9d
No related branches found
No related tags found
1 merge request!35ORM-less scheduling
...@@ -100,11 +100,11 @@ class ResourceClass(Enum): ...@@ -100,11 +100,11 @@ class ResourceClass(Enum):
FILE = {"id": "fs", "numeric": 0, "types": [ResourceType.FILE]} FILE = {"id": "fs", "numeric": 0, "types": [ResourceType.FILE]}
STREAM = { STREAM = {
"id": "fs", "id": "http",
"numeric": 1, "numeric": 1,
"types": [ResourceType.STREAM_HTTP], "types": [ResourceType.STREAM_HTTP],
} }
LIVE = {"id": "http", "numeric": 2, "types": [ResourceType.LINE]} LIVE = {"id": "live", "numeric": 2, "types": [ResourceType.LINE]}
PLAYLIST = { PLAYLIST = {
"id": "playlist", "id": "playlist",
"numeric": 3, "numeric": 3,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment