File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
services/libs/opensearch/src Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,7 @@ export class SearchSyncApiClient {
1313 } )
1414 }
1515
16- public async triggerMemberSync (
17- memberId : string ,
18- opts : { withAggs ?: boolean } = { } ,
19- ) : Promise < void > {
16+ public async triggerMemberSync ( memberId : string , opts ?: { withAggs ?: boolean } ) : Promise < void > {
2017 if ( ! memberId ) {
2118 throw new Error ( 'memberId is required!' )
2219 }
Original file line number Diff line number Diff line change @@ -383,8 +383,6 @@ export class MemberSyncService {
383383 ) : Promise < IMemberSyncResult > {
384384 const qx = repoQx ( this . memberRepo )
385385
386- this . log . info ( 'opts withAggs' , { withAggs : opts . withAggs } )
387-
388386 const syncMemberAggregates = async ( memberId ) => {
389387 if ( opts . syncFrom ) {
390388 const lastSyncDate = await findLastSyncDate ( qx , memberId )
You can’t perform that action at this time.
0 commit comments