release: 1.0.3

fix: load ort-version via bash script on all release runners, toolchain
harmonization
This commit is contained in:
Per Stark
2026-06-12 09:12:32 +02:00
parent e65515a71c
commit 919e699287
16 changed files with 55 additions and 36 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ use tracing::{debug, info, warn};
use crate::{error::AppError, storage::db::SurrealDbClient};
const INDEX_POLL_INTERVAL: Duration = Duration::from_millis(50);
const INDEX_BUILD_TIMEOUT: Duration = Duration::from_mins(30);
const INDEX_BUILD_TIMEOUT: Duration = Duration::from_secs(30 * 60);
const FTS_ANALYZER_NAME: &str = "app_en_fts_analyzer";
/// HNSW index options used by runtime index creation (includes CONCURRENTLY).
+2 -2
View File
@@ -750,7 +750,7 @@ mod tests {
let worker_id = "worker-1";
let now = chrono::Utc::now();
let claimed = IngestionTask::claim_next_ready(&db, worker_id, now, Duration::from_mins(1))
let claimed = IngestionTask::claim_next_ready(&db, worker_id, now, Duration::from_secs(60))
.await
.with_context(|| "claim".to_string())?
.with_context(|| "task claimed".to_string())?;
@@ -786,7 +786,7 @@ mod tests {
let worker_id = "worker-dead";
let now = chrono::Utc::now();
let claimed = IngestionTask::claim_next_ready(&db, worker_id, now, Duration::from_mins(1))
let claimed = IngestionTask::claim_next_ready(&db, worker_id, now, Duration::from_secs(60))
.await
.with_context(|| "claim".to_string())?
.with_context(|| "claimed".to_string())?;
+1
View File
@@ -19,6 +19,7 @@ pub enum TemplateEngine {
Embedded(Arc<Environment<'static>>),
}
#[allow(clippy::module_name_repetitions)]
#[macro_export]
macro_rules! create_template_engine {
// Single path argument