Signed-off-by: pyranota <pyra@duck.com>
This commit is contained in:
pyranota
2025-12-02 12:40:29 +01:00
parent 2eeb568966
commit a976d963a8
@@ -2,7 +2,6 @@ use itertools::Itertools;
use regex::Regex;
use serde::{Deserialize, Serialize};
use sqlx::PgExecutor;
use std::time::Instant;
use crate::{
cache::workspace_dependencies::{
@@ -230,6 +229,11 @@ impl WorkspaceDependencies {
.map(|exists| exists == false)
.unwrap_or_default()
{
tracing::debug!(
workspace_id = %workspace_id,
?language,
"skipping unnamed workspace dependencies fetch - cached as non-existent"
);
return Ok(None);
}