File tree Expand file tree Collapse file tree
apps/backend/src/app/api/latest/internal/external-db-sync Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -245,10 +245,6 @@ export const GET = createSmartRouteHandler({
245245 const pendingRequests = await claimPendingRequests ( ) ;
246246 iterationSpan . setAttribute ( "stack.external-db-sync.pending-count" , pendingRequests . length ) ;
247247
248- if ( pendingRequests . length > 0 ) {
249- console . log ( `[Poller] Processing ${ pendingRequests . length } pending requests` ) ;
250- }
251-
252248 const processed = await processRequests ( pendingRequests ) ;
253249 iterationSpan . setAttribute ( "stack.external-db-sync.processed-count" , processed ) ;
254250 return { stopReason : null , processed } ;
Original file line number Diff line number Diff line change @@ -138,10 +138,6 @@ async function backfillSequenceIds(batchSize: number): Promise<boolean> {
138138
139139 span . setAttribute ( "stack.external-db-sync.did-update" , didUpdate ) ;
140140
141- if ( didUpdate ) {
142- console . log ( `[Sequencer] Backfilled USR=${ projectUserTenants . length } CC=${ contactChannelTenants . length } DEL=${ deletedRowTenants . length } ` ) ;
143- }
144-
145141 return didUpdate ;
146142 } ) ;
147143}
You can’t perform that action at this time.
0 commit comments