@@ -239,7 +239,7 @@ private static async Async.Task ProcessNotification(IOnefuzzContext context, Con
239
239
240
240
var renderedConfig = RenderAdoTemplate ( logTracer , renderer , config , instanceUrl ) ;
241
241
var ado = new AdoConnector ( renderedConfig , project ! , client , instanceUrl , logTracer , await GetValidFields ( client , project ) ) ;
242
- await ado . Process ( notificationInfo , config . AdoDuplicateFields ) ;
242
+ await ado . Process ( notificationInfo ) ;
243
243
}
244
244
245
245
public static RenderedAdoTemplate RenderAdoTemplate ( ILogger logTracer , Renderer renderer , AdoTemplate original , Uri instanceUrl ) {
@@ -526,7 +526,7 @@ private async Async.Task<WorkItem> CreateNew() {
526
526
return ( taskType , document ) ;
527
527
}
528
528
529
- public async Async . Task Process ( IList < ( string , string ) > notificationInfo , Dictionary < string , string > ? duplicateFields ) {
529
+ public async Async . Task Process ( IList < ( string , string ) > notificationInfo ) {
530
530
var updated = false ;
531
531
WorkItem ? oldestWorkItem = null ;
532
532
await foreach ( var workItem in ExistingWorkItems ( notificationInfo ) ) {
@@ -536,7 +536,7 @@ public async Async.Task Process(IList<(string, string)> notificationInfo, Dictio
536
536
_logTracer . AddTags ( new List < ( string , string ) > { ( "MatchingWorkItemIds" , $ "{ workItem . Id } ") } ) ;
537
537
_logTracer . LogInformation ( "Found matching work item" ) ;
538
538
}
539
- if ( IsADODuplicateWorkItem ( workItem , duplicateFields ) ) {
539
+ if ( IsADODuplicateWorkItem ( workItem , _config . AdoDuplicateFields ) ) {
540
540
continue ;
541
541
}
542
542
0 commit comments