-
Notifications
You must be signed in to change notification settings - Fork 9
refactor: Start deep refactor of the client part of the project. #208
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
base: main
Are you sure you want to change the base?
Conversation
eb9c702 to
97039b2
Compare
97039b2 to
9d58564
Compare
|
For the changes visible to the user, we need to document extensively all the name changes and api changes. Will be very important to create a proper changelog |
| /// </summary> | ||
| [PublicAPI] | ||
| public enum ArmonikStatusCode | ||
| public enum ArmonikTaskStatusCode |
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.
| public enum ArmonikTaskStatusCode | |
| public enum ArmoniKTaskStatusCode |
26cf28d to
fdb98a7
Compare
fdb98a7 to
f694288
Compare
But still using new ApiExt methods.
729f640 to
685d2e9
Compare
...ToEndTests/ArmoniK.EndToEndTests.Client/Tests/AggregationPriority/AggregationPriorityTest.cs
Outdated
Show resolved
Hide resolved
| var taskRawData = new List<TaskDetailed>(); | ||
|
|
||
| await foreach (var taskRaw in RetrieveAllTasksStats(service.GetChannel(), | ||
| await foreach (var taskRaw in RetrieveAllTasksStats(null, |
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.
why null as input ?
| if (e.StatusCode == ArmonikStatusCode.TaskCancelled) | ||
| if (e.TaskStatusCode == ArmonikTaskStatusCode.TaskCancelled) | ||
| { | ||
| Log.LogWarning($"Task canceled : {taskId}. Status {e.StatusCode.ToString()} Message : {e.Message}\nDetails : {e.OutputDetails}"); |
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.
.ToString may not be needed anymore
Begin of work.
Submitter.SubmitterClient