spacedriveapp/spacedrive · error

Conduit not found

Error message

Conduit not found

What it means

Error "Conduit not found" thrown in spacedriveapp/spacedrive.

Source

Thrown at core/src/service/file_sync/conduit.rs:90

			total_syncs: Set(0),
			files_synced: Set(0),
			bytes_transferred: Set(0),
			created_at: Set(now),
			updated_at: Set(now),
			..Default::default()
		};

		let result = conduit.insert(&*self.db).await?;

		Ok(result)
	}

	/// Get conduit by ID
	pub async fn get_conduit(&self, id: i32) -> Result<sync_conduit::Model> {
		sync_conduit::Entity::find_by_id(id)
			.one(&*self.db)
			.await?
			.ok_or_else(|| anyhow::anyhow!("Conduit not found"))
	}

	/// Get conduit by UUID
	pub async fn get_conduit_by_uuid(&self, uuid: Uuid) -> Result<sync_conduit::Model> {
		sync_conduit::Entity::find()
			.filter(sync_conduit::Column::Uuid.eq(uuid))
			.one(&*self.db)
			.await?
			.ok_or_else(|| anyhow::anyhow!("Conduit not found"))
	}

	/// List all conduits
	pub async fn list_all(&self) -> Result<Vec<sync_conduit::Model>> {
		Ok(sync_conduit::Entity::find().all(&*self.db).await?)
	}

	/// List enabled conduits
	pub async fn list_enabled(&self) -> Result<Vec<sync_conduit::Model>> {

View on GitHub (pinned to 6dfeccf211)

When it happens

Trigger: Thrown at core/src/service/file_sync/conduit.rs:90 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of spacedriveapp/spacedrive@6dfeccf211 (2026-08-16). Data as JSON: /api/errors/71032c53c1276db4. Report an issue: GitHub.