Skip to content

Commit

Permalink
Merge pull request #2404 from atlanhq/DG-235
Browse files Browse the repository at this point in the history
[stag] DG-235 rawQueryText ES indexing issue with \n
  • Loading branch information
nikhilbonte21 authored Oct 11, 2023
2 parents 46d1006 + b42c5b0 commit 3da8723
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions addons/elasticsearch/es-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,10 @@
"replacement":" $0"
},
"truncate_filter": {
"pattern": "(^.{0,100000}).*$",
"pattern": "(.{0,100000}).*",
"type": "pattern_replace",
"replacement": "$1 "
"replacement": "$1",
"flags": "DOTALL"
}
}
}
Expand Down

0 comments on commit 3da8723

Please sign in to comment.