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 b5c796b commit bd0e832Copy full SHA for bd0e832
1 file changed
crates/terraphim_sessions/src/connector/codex.rs
@@ -92,6 +92,8 @@ impl SessionConnector for CodexConnector {
92
if let Some(path) = self.default_path() {
93
if path.exists() {
94
let count = walkdir::WalkDir::new(&path)
95
+ .max_depth(4)
96
+ .follow_links(false)
97
.into_iter()
98
.filter_map(|e| e.ok())
99
.filter(|e| e.path().extension().is_some_and(|ext| ext == "jsonl"))
@@ -123,6 +125,8 @@ impl SessionConnector for CodexConnector {
123
125
124
126
// Find all JSONL session files
127
for entry in walkdir::WalkDir::new(&path)
128
129
130
131
132
0 commit comments