We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b5b1f0 commit d4a8843Copy full SHA for d4a8843
refact-agent/engine/src/integrations/setting_up_integrations.rs
@@ -159,7 +159,6 @@ pub async fn read_integrations_d(
159
// Find integrations present in config_dir/integrations.d
160
if let Ok(mut entries) = tokio::fs::read_dir(config_dir.join("integrations.d")).await {
161
while let Ok(Some(entry)) = entries.next_entry().await {
162
- // Get filename without extension or ignore if extension is not yaml
163
let file_name = if let Some(name) = entry.file_name().to_string_lossy().strip_suffix(".yaml") {
164
name.to_string()
165
} else {
0 commit comments