-
Notifications
You must be signed in to change notification settings - Fork 4
end to end fixs #260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
end to end fixs #260
Conversation
Signed-off-by: Neil South <neil.south@answerdigital.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
license-eye has totally checked 5088 files.
Valid | Invalid | Ignored | Fixed |
---|---|---|---|
290 | 3 | 4795 | 0 |
Click to see the invalid file list
- guidelines/mwm-developer-setup.md
- guidelines/mwm-workflow-spec.md
- src/PayloadListener/Extensions/CollectionExtensions.cs
Signed-off-by: Neil South <neil.south@answerdigital.com>
Signed-off-by: Neil South <neil.south@answerdigital.com>
Signed-off-by: Neil South <neil.south@answerdigital.com>
SonarCloud Quality Gate failed. |
await Task.WhenAll(tasks); | ||
workflowInstances.AddRange(tasks.Select(t => t.Result)); | ||
|
||
Debug.Assert(workflowInstances.Count > 0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this debugging code left in?
var workflowInstance = await CreateWorkflowInstanceAsync(message, workflow); | ||
workflowInstances.Add(workflowInstance); | ||
} | ||
var tasks = workflows.Select(workflow => CreateWorkflowInstanceAsync(message, workflow)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would this be simpler as
var workflowInstances = await workflows.Select(async workflow => await CreateWorkflowInstanceAsync(message, workflow));
I think is the syntax?
"storage": { | ||
"serviceAssemblyName": "Monai.Deploy.Storage.MinIO.MinIoStorageService, Monai.Deploy.Storage.MinIO", | ||
"settings": { | ||
"endpoint": "minio:30090", // note edit C:\Windows\System32\drivers\etc\Hosts fand add `127.0.0.1 minio` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont think putting comments like this in json like this is valid.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Signed-off-by: Neil South neil.south@answerdigital.com
Description
Fixes # .
A few sentences describing the changes proposed in this pull request.
Status
Ready/Work in progress/Hold
Types of changes