We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d83ab54 commit 908d15aCopy full SHA for 908d15a
2 files changed
xapi_stmt_gen/xapi_stmt_gen/config/app.js
@@ -2,6 +2,13 @@ const config = {
2
url: 'http://learninglocker',
3
limit: 500,
4
chunkSize: 100,
5
+ filter: {
6
+ logstoreStandardLog: {
7
+ origin: {
8
+ exclude: []
9
+ }
10
11
+ },
12
db: {
13
// LMS database connection settings
14
lms: {
xapi_stmt_gen/xapi_stmt_gen/generator.js
@@ -3546,6 +3546,9 @@ async function findLogs(limit){
3546
where: {
3547
id: {
3548
[Op.gt]: lastLogProcessed ? lastLogProcessed.objectid : -1
3549
3550
3551
+ [Op.notIn]: config.filter.logstoreStandardLog.origin.exclude
3552
}
3553
},
3554
order: [['id', 'ASC']],
0 commit comments