{"record":{"id":"71032c53c1276db4","repo":"spacedriveapp/spacedrive","slug":"conduit-not-found","errorCode":null,"errorMessage":"Conduit not found","messagePattern":"Conduit not found","errorType":"exception","errorClass":null,"httpStatus":null,"severity":"error","filePath":"core/src/service/file_sync/conduit.rs","lineNumber":90,"sourceCode":"\t\t\ttotal_syncs: Set(0),\n\t\t\tfiles_synced: Set(0),\n\t\t\tbytes_transferred: Set(0),\n\t\t\tcreated_at: Set(now),\n\t\t\tupdated_at: Set(now),\n\t\t\t..Default::default()\n\t\t};\n\n\t\tlet result = conduit.insert(&*self.db).await?;\n\n\t\tOk(result)\n\t}\n\n\t/// Get conduit by ID\n\tpub async fn get_conduit(&self, id: i32) -> Result<sync_conduit::Model> {\n\t\tsync_conduit::Entity::find_by_id(id)\n\t\t\t.one(&*self.db)\n\t\t\t.await?\n\t\t\t.ok_or_else(|| anyhow::anyhow!(\"Conduit not found\"))\n\t}\n\n\t/// Get conduit by UUID\n\tpub async fn get_conduit_by_uuid(&self, uuid: Uuid) -> Result<sync_conduit::Model> {\n\t\tsync_conduit::Entity::find()\n\t\t\t.filter(sync_conduit::Column::Uuid.eq(uuid))\n\t\t\t.one(&*self.db)\n\t\t\t.await?\n\t\t\t.ok_or_else(|| anyhow::anyhow!(\"Conduit not found\"))\n\t}\n\n\t/// List all conduits\n\tpub async fn list_all(&self) -> Result<Vec<sync_conduit::Model>> {\n\t\tOk(sync_conduit::Entity::find().all(&*self.db).await?)\n\t}\n\n\t/// List enabled conduits\n\tpub async fn list_enabled(&self) -> Result<Vec<sync_conduit::Model>> {","sourceCodeStart":72,"sourceCodeEnd":108,"githubUrl":"https://github.com/spacedriveapp/spacedrive/blob/6dfeccf2113039e35f2ce735f945e70dc3e4ea45/core/src/service/file_sync/conduit.rs#L72-L108","documentation":"Error \"Conduit not found\" thrown in spacedriveapp/spacedrive.","triggerScenarios":"Thrown at core/src/service/file_sync/conduit.rs:90 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"6dfeccf2113039e35f2ce735f945e70dc3e4ea45","analyzedAt":"2026-08-16T11:26:17.074Z","schemaVersion":2},"datasetVersion":"2026-08-16T13:17:31.715Z"}