Skip to content

Commit 7e0d5e6

Browse files
committed
gh-196 Move task dispatch events to database from in-memory store.
Signed-off-by: Victor Chang <[email protected]>
1 parent 777085d commit 7e0d5e6

File tree

76 files changed

+2141
-5660
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+2141
-5660
lines changed

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
root = true
1919

2020
# Copyright File Header
21-
file_header_template = SPDX-FileCopyrightText: [year file created] - [last year file modified], MONAI Consortium\nSPDX-License-Identifier: Apache License 2.0
2221
dotnet_diagnostic.IDE0073.severity = error
2322

2423
# Default settings:

.vscode/launch.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": ".NET Core Launch (console)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
"program": "${workspaceFolder}/src/TaskManager/Runner/bin/Debug/net6.0/Monai.Deploy.WorkflowManager.TaskManager.Runner",
13+
"args": ["http://10.97.150.146"],
14+
"cwd": "${workspaceFolder}/src/TaskManager/Runner/",
15+
"stopAtEntry": false,
16+
"console": "internalConsole"
17+
}
18+
19+
]
20+
}

.vscode/tasks.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "build",
8+
"command": "dotnet",
9+
"type": "shell",
10+
"args": [
11+
"build",
12+
// Ask dotnet build to generate full paths for file names.
13+
"/property:GenerateFullPaths=true",
14+
// Do not generate summary otherwise it leads to duplicate errors in Problems panel
15+
"/consoleloggerparameters:NoSummary",
16+
"src/TaskManager/Runner/"
17+
],
18+
"group": "build",
19+
"presentation": {
20+
"reveal": "silent"
21+
},
22+
"problemMatcher": "$msCompile"
23+
}
24+
]
25+
}

src/Configuration/Monai.Deploy.WorkflowManager.Configuration.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
<PackageReference Include="Monai.Deploy.Storage" Version="0.2.0-rc0009" />
2929
<PackageReference Include="Monai.Deploy.Storage.MinIO" Version="0.2.0-rc0009" />
3030
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
31-
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="0.1.3-rc0010" />
31+
<PackageReference Include="Monai.Deploy.Storage" Version="0.2.0-rc0012" />
3232
<PackageReference Include="Monai.Deploy.Messaging" Version="0.1.3-rc0010" />
33-
<PackageReference Include="System.IO.Abstractions" Version="17.0.18" />
33+
<PackageReference Include="System.IO.Abstractions" Version="17.0.24" />
3434
</ItemGroup>
3535

3636
<ItemGroup>

0 commit comments

Comments
 (0)