Skip to content

Commit e38e555

Browse files
fix(scan-request): use correct params
1 parent de212e6 commit e38e555

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dynamo/request/scan/scan.request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class ScanRequest<T> extends Request<T, ScanRequest<T>, ScanInput, ScanRe
4848
}
4949

5050
this.logger.debug('single request', params)
51-
return this.dynamoRx.scan(this.params).pipe(
51+
return this.dynamoRx.scan(params).pipe(
5252
tap(response => this.logger.debug('response', response)),
5353
map(this.mapFromDb),
5454
map(r => r.Items && r.Items.length ? r.Items[0] : null),

0 commit comments

Comments
 (0)