From 0853e8aa959e09489f073c712f05103809cf589c Mon Sep 17 00:00:00 2001 From: wendrul Date: Thu, 24 Apr 2025 00:04:53 +0200 Subject: [PATCH] fix typo --- backend/parsers/windmill-parser-yaml/src/lib.rs | 2 +- backend/windmill-worker/src/ansible_executor.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/parsers/windmill-parser-yaml/src/lib.rs b/backend/parsers/windmill-parser-yaml/src/lib.rs index f2c8e14e21..ea74003c77 100644 --- a/backend/parsers/windmill-parser-yaml/src/lib.rs +++ b/backend/parsers/windmill-parser-yaml/src/lib.rs @@ -692,7 +692,7 @@ pub fn add_versions_to_requirements_yaml( ); logs.push_str( &update_versions("collections", doc, collection_versions) - .map_err(|e| anyhow!("Error updating role versions: {e}"))?, + .map_err(|e| anyhow!("Error updating collection versions: {e}"))?, ); if !logs.is_empty() { diff --git a/backend/windmill-worker/src/ansible_executor.rs b/backend/windmill-worker/src/ansible_executor.rs index 2a3e3c3282..41bbe24c3c 100644 --- a/backend/windmill-worker/src/ansible_executor.rs +++ b/backend/windmill-worker/src/ansible_executor.rs @@ -8,7 +8,7 @@ use anyhow::anyhow; use futures::future::try_join_all; use itertools::Itertools; use serde::{Deserialize, Serialize}; -use serde_json::{json, value::RawValue}; +use serde_json::value::RawValue; use tokio::process::Command; use uuid::Uuid; use windmill_common::{ @@ -44,7 +44,7 @@ lazy_static::lazy_static! { } const NSJAIL_CONFIG_RUN_ANSIBLE_CONTENT: &str = include_str!("../nsjail/run.ansible.config.proto"); -const WINDMILL_ANSIBLE_PASSWORD_FILENAME: &str = ".windmil.ansible_vault_password_file"; +const WINDMILL_ANSIBLE_PASSWORD_FILENAME: &str = ".windmill.ansible_vault_password_file"; async fn clone_repo( repo: &GitRepo,