File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ update_settings_1: |-
338
338
])
339
339
.with_synonyms(synonyms)
340
340
.with_typo_tolerance(typo_tolerance)
341
- .with_search_cutoff(5 );
341
+ .with_search_cutoff(150 );
342
342
343
343
let task: TaskInfo = client
344
344
.index("movies")
@@ -1629,19 +1629,19 @@ reset_proximity_precision_settings_1: |-
1629
1629
.unwrap();
1630
1630
get_search_cutoff_1 : |-
1631
1631
let search_cutoff_ms: String = client
1632
- .index("books ")
1632
+ .index("movies ")
1633
1633
.get_search_cutoff_ms()
1634
1634
.await
1635
1635
.unwrap();
1636
1636
update_search_cutoff_1 : |-
1637
1637
let task: TaskInfo = client
1638
- .index("books ")
1639
- .set_search_cutoff_ms(Some(0 ))
1638
+ .index("movies ")
1639
+ .set_search_cutoff_ms(Some(150 ))
1640
1640
.await
1641
1641
.unwrap();
1642
1642
reset_search_cutoff_1 : |-
1643
1643
let task: TaskInfo = client
1644
- .index("books ")
1644
+ .index("movies ")
1645
1645
.reset_search_cutoff_ms()
1646
1646
.await
1647
1647
.unwrap();
You can’t perform that action at this time.
0 commit comments