Browse Source

remove unused field `reuse_for`

pull/1076/head
Chrislearn Young 6 months ago
parent
commit
076e7f8035
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libraries/core/src/build/git.rs

+ 1
- 2
libraries/core/src/build/git.rs View File

@@ -10,13 +10,12 @@ use std::{
use url::Url; use url::Url;


#[derive(Default)] #[derive(Default)]
#[allow(dead_code)]
pub struct GitManager { pub struct GitManager {
/// Directories that are currently in use by running dataflows. /// Directories that are currently in use by running dataflows.
pub clones_in_use: BTreeMap<PathBuf, BTreeSet<DataflowId>>, pub clones_in_use: BTreeMap<PathBuf, BTreeSet<DataflowId>>,
/// Builds that are prepared, but not done yet. /// Builds that are prepared, but not done yet.
prepared_builds: BTreeMap<SessionId, PreparedBuild>, prepared_builds: BTreeMap<SessionId, PreparedBuild>,
reuse_for: BTreeMap<PathBuf, PathBuf>,
// reuse_for: BTreeMap<PathBuf, PathBuf>,
} }


#[derive(Default)] #[derive(Default)]


Loading…
Cancel
Save