Skip to content

Commit 8801a52

Browse files
authored
fix: search (#122)
Closes #118
1 parent 619b6fc commit 8801a52

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55

66
## [Unreleased]
77

8+
### Fixed
9+
10+
- Search ([#122](https://github.com/stac-utils/rustac-py/pull/122))
11+
812
## [0.7.1] - 2025-05-02
913

1014
### Fixed

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub fn main(py: Python<'_>) -> PyResult<i64> {
2424
let level = args.log_level().unwrap_or(Level::INFO);
2525
logger.call_method1("setLevel", (level.to_string(),))?;
2626
std::process::exit(
27-
tokio::runtime::Builder::new_multi_thread()
27+
tokio::runtime::Builder::new_current_thread()
2828
.enable_all()
2929
.build()
3030
.unwrap()

0 commit comments

Comments
 (0)