-
Notifications
You must be signed in to change notification settings - Fork 21
Conversation
/// 2. Only if a ingestion was not started queue the message to be processed. | ||
/// 3. After the message is queued, update the SymbolServerRequests table. | ||
/// </summary> | ||
/// <param name="request">The request to be send to the ingester job queue.</param> |
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.
nit: ..to be sent
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.
Updated
else | ||
{ | ||
_logger.LogInformation( | ||
"The symbols ingestion request added to the data base. RequestStatus:{Status} for {PackageId} {PackageNormalizedVersion} {SymbolsPackageKey}.", |
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.
nit: ...to the database
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.
Updated
public class SymbolsIngesterConfiguration : SymbolsValidationConfiguration | ||
{ | ||
} | ||
} |
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 don't see this used anywhere.
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.
It will be used for the configuration in the settings.json file.
{ | ||
Created = DateTime.UtcNow, | ||
LastUpdated = DateTime.UtcNow, | ||
RequestName = validationRequest.PackageKey.ToString(), |
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 do not think we can use the PackageKey
as the request name, we cannot push multiple snupkgs for same package otherwise.
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.
It will be the key for the symbol packages.
@@ -55,8 +57,17 @@ | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="NuGet.Services.ServiceBus"> | |||
<Version>2.26.0-sb-status-34752</Version> | |||
<Version>2.28.0-sb-morestatus-35915</Version> |
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.
2.28.0-sb-morestatus-35915 [](start = 14, length = 27)
Need a version not from a private branch.
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.
My mistake. Updated.
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.
Add the symbols ingester as an Orchestrator validator.
Add support for Orchestrator to queue messages to the symbols ingestion queue.