7 Nov
2024
7 Nov
'24
11:26 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38386 --- Comment #2 from Tomás Cohen Arazi (tcohen) <tomascohen@gmail.com> --- in order to understand the difference in the behavior, you need an ES-enabled KTD: ```shell ktd --proxy --es7 up -d ktd --shell ``` Then compare the output of the following commands: ```shell curl -X GET 'http://es:9200/koha_kohadev_biblios/_search?scroll=1m&size=10' -H 'Content-Type: application/json' -d'{"query":{"match_all":{}}}' ``` and ```shell curl -X GET 'http://es:9200/koha_kohadev_biblios/_search?scroll=1m&size=10' -H 'Content-Type: application/json' -d'{"_source":false,"query":{"match_all":{}}}' ``` -- You are receiving this mail because: You are watching all bug changes.