Skip to content

Commit

Permalink
gh-196 Move task dispatch events to database from in-memory store.
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Chang <[email protected]>
  • Loading branch information
mocsharp committed Jul 28, 2022
1 parent 777085d commit 7e0d5e6
Show file tree
Hide file tree
Showing 76 changed files with 2,141 additions and 5,660 deletions.
1 change: 0 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
root = true

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

# Default settings:
Expand Down
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/TaskManager/Runner/bin/Debug/net6.0/Monai.Deploy.WorkflowManager.TaskManager.Runner",
"args": ["http://10.97.150.146"],
"cwd": "${workspaceFolder}/src/TaskManager/Runner/",
"stopAtEntry": false,
"console": "internalConsole"
}

]
}
25 changes: 25 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "shell",
"args": [
"build",
// Ask dotnet build to generate full paths for file names.
"/property:GenerateFullPaths=true",
// Do not generate summary otherwise it leads to duplicate errors in Problems panel
"/consoleloggerparameters:NoSummary",
"src/TaskManager/Runner/"
],
"group": "build",
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
<PackageReference Include="Monai.Deploy.Storage" Version="0.2.0-rc0009" />
<PackageReference Include="Monai.Deploy.Storage.MinIO" Version="0.2.0-rc0009" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="0.1.3-rc0010" />
<PackageReference Include="Monai.Deploy.Storage" Version="0.2.0-rc0012" />
<PackageReference Include="Monai.Deploy.Messaging" Version="0.1.3-rc0010" />
<PackageReference Include="System.IO.Abstractions" Version="17.0.18" />
<PackageReference Include="System.IO.Abstractions" Version="17.0.24" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit 7e0d5e6

Please sign in to comment.