Bugzilla – Attachment 180973 Details for
Bug 39636
Add options to compare_es_to_db script
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39636: Update curl link
Bug-39636-Update-curl-link.patch (text/plain), 1.35 KB, created by
Tomás Cohen Arazi (tcohen)
on 2025-04-15 14:32:42 UTC
(
hide
)
Description:
Bug 39636: Update curl link
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2025-04-15 14:32:42 UTC
Size:
1.35 KB
patch
obsolete
>From 280d664349c508cdd7de73da1a7b3d8d44b83883 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Tue, 15 Apr 2025 11:49:12 +0000 >Subject: [PATCH] Bug 39636: Update curl link > >With the move to the latest ES versions we got rid of 'data' type - we need to use '_doc' > >To test: >1 - Delete a record from the DB directly > DELETE FROM biblio WHERE biblionumber=45; >2 - perl misc/maintenance/compare_es_to_db.pl >3 - Try the curl command - it doesn't work >4 - Apply this patch >5 - perl misc/maintenance/compare_es_to_db.pl >6 - Try the curl command - it now fetches the record > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > misc/maintenance/compare_es_to_db.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/misc/maintenance/compare_es_to_db.pl b/misc/maintenance/compare_es_to_db.pl >index 5a5635ee43c..37850a483ee 100755 >--- a/misc/maintenance/compare_es_to_db.pl >+++ b/misc/maintenance/compare_es_to_db.pl >@@ -152,7 +152,7 @@ foreach my $index (@indices) { > print "Records that exist in ES but not in Koha\n"; > for my $problem (@es_problems) { > print " #$problem"; >- print " Enter this command to view record: curl $es_base/data/$problem?pretty=true\n"; >+ print " Enter this command to view record: curl $es_base/_doc/$problem?pretty=true\n"; > } > } > >-- >2.49.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 39636
:
180957
|
180958
|
180959
|
180972
| 180973