Skip to content

feat: patchable init mirroring #1070

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
May 9, 2025
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
27c46b2
feat: support forking when initializing
dervoeti Apr 25, 2025
b863cb8
fix: don't use fetchhead / update libgit / migrate patchable.toml files
dervoeti Apr 30, 2025
9c85873
chore: replace "forking" with "mirroring"
dervoeti Apr 30, 2025
cf27542
feat: keep original upstream / anonymous remote
dervoeti Apr 30, 2025
3034966
refactor: move progress tracking setup into utils function
dervoeti May 2, 2025
42e9cb4
feat: always use tags in our mirror repos
dervoeti May 5, 2025
3a64496
Update rust/patchable/src/main.rs
dervoeti May 5, 2025
1d444db
Update rust/patchable/src/main.rs
dervoeti May 5, 2025
06ca421
Update rust/patchable/src/main.rs
dervoeti May 5, 2025
5aa1769
Update rust/patchable/src/main.rs
dervoeti May 5, 2025
37b4bf2
Update rust/patchable/src/main.rs
dervoeti May 5, 2025
0db5985
Update rust/patchable/src/main.rs
dervoeti May 5, 2025
fbf681f
fix: span behaviour / mirror flag
dervoeti May 5, 2025
694e5c7
feat: separate product level configuration
dervoeti May 6, 2025
43f33c1
refactor: separate product and version config
dervoeti May 6, 2025
2adc5e1
fix: adjust README
dervoeti May 6, 2025
27a9096
chore: formatting / unnecessary clone
dervoeti May 7, 2025
081eec1
fix: tracing
dervoeti May 7, 2025
ea3fb74
fix: readme adjustment
dervoeti May 7, 2025
51b26ed
Make mirroring optional again
nightkr May 8, 2025
dd32e8a
feat: ssh support
dervoeti May 8, 2025
9923c9d
feat: remove url crate
dervoeti May 8, 2025
b101cd4
docs: update README
dervoeti May 8, 2025
b30dfe6
Update rust/patchable/src/main.rs
dervoeti May 8, 2025
098a440
Merge branch 'main' of https://github.com/stackabletech/docker-images…
dervoeti May 8, 2025
84c6ce6
feat: product-level configs for patchable
dervoeti May 8, 2025
9604e63
docs: fixed README.md for markdownlint
dervoeti May 8, 2025
155a162
chore: removed upstream from version configs / added missing product-…
dervoeti May 9, 2025
02a06a2
Merge branch 'main' of https://github.com/stackabletech/docker-images…
dervoeti May 9, 2025
6148608
fix: copy complete patches directories to include patchable product c…
dervoeti May 9, 2025
7e25a6d
Revert "fix: copy complete patches directories to include patchable p…
dervoeti May 9, 2025
11d1971
fix: copy patchable product config as well
dervoeti May 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"

[workspace.dependencies]
clap = { version = "4.5.27", features = ["derive"] }
git2 = "0.20.0"
git2 = "0.20.1"
serde = { version = "1.0.217", features = ["derive"] }
snafu = "0.8.5"
tempfile = "3.16.0"
Expand Down
1 change: 1 addition & 0 deletions druid/stackable/patches/30.0.0/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/druid.git"
base = "09d36ee324747f1407705c27618b6d415c3fa8a9"
mirror = "https://github.com/stackabletech/druid.git"
1 change: 1 addition & 0 deletions druid/stackable/patches/30.0.1/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/druid.git"
base = "a30af7a91d528e5c3a90356a5592abc7119191c6"
mirror = "https://github.com/stackabletech/druid.git"
1 change: 1 addition & 0 deletions druid/stackable/patches/31.0.1/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/druid.git"
base = "520482cb9638e452b0553595b4f29bb397a63758"
mirror = "https://github.com/stackabletech/druid.git"
1 change: 1 addition & 0 deletions hadoop/stackable/patches/3.3.4/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hadoop.git"
base = "a585a73c3e02ac62350c136643a5e7f6095a3dbb"
mirror = "https://github.com/stackabletech/hadoop.git"
1 change: 1 addition & 0 deletions hadoop/stackable/patches/3.3.6/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hadoop.git"
base = "1be78238728da9266a4f88195058f08fd012bf9c"
mirror = "https://github.com/stackabletech/hadoop.git"
1 change: 1 addition & 0 deletions hadoop/stackable/patches/3.4.0/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hadoop.git"
base = "bd8b77f398f626bb7791783192ee7a5dfaeec760"
mirror = "https://github.com/stackabletech/hadoop.git"
1 change: 1 addition & 0 deletions hadoop/stackable/patches/3.4.1/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hadoop.git"
base = "4d7825309348956336b8f06a08322b78422849b1"
mirror = "https://github.com/stackabletech/hadoop.git"
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hbase-operator-tools.git"
base = "478af00af79f82624264fd2bb447b97fecc8e790"
mirror = "https://github.com/stackabletech/hbase-operator-tools.git"
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hbase-operator-tools.git"
base = "fd5a5fb90755949a90c502c76de8313130403fa3"
mirror = "https://github.com/stackabletech/hbase-operator-tools.git"
1 change: 1 addition & 0 deletions hbase/phoenix/stackable/patches/5.2.1/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/phoenix.git"
base = "b738d66cb5863b759bb98eaa417b3b5731d41f95"
mirror = "https://github.com/stackabletech/phoenix.git"
1 change: 1 addition & 0 deletions hbase/stackable/patches/2.4.18/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hbase.git"
base = "a1767f4d76859c0068720a6c1e5cb78282ebfe1e"
mirror = "https://github.com/stackabletech/hbase.git"
1 change: 1 addition & 0 deletions hbase/stackable/patches/2.6.0/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hbase.git"
base = "de99f8754135ea69adc39da48d2bc2b2710a5366"
mirror = "https://github.com/stackabletech/hbase.git"
1 change: 1 addition & 0 deletions hbase/stackable/patches/2.6.1/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hbase.git"
base = "7ed50b4dd742269a78875fb32112215f831284ff"
mirror = "https://github.com/stackabletech/hbase.git"
1 change: 1 addition & 0 deletions hive/stackable/patches/3.1.3/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hive.git"
base = "4df4d75bf1e16fe0af75aad0b4179c34c07fc975"
mirror = "https://github.com/stackabletech/hive.git"
1 change: 1 addition & 0 deletions hive/stackable/patches/4.0.0/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hive.git"
base = "183f8cb41d3dbed961ffd27999876468ff06690c"
mirror = "https://github.com/stackabletech/hive.git"
1 change: 1 addition & 0 deletions hive/stackable/patches/4.0.1/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hive.git"
base = "3af4517eb8cfd9407ad34ed78a0b48b57dfaa264"
mirror = "https://github.com/stackabletech/hive.git"
1 change: 1 addition & 0 deletions kafka/stackable/patches/3.7.1/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/kafka.git"
base = "e2494e6ffb89f8288ed2aeb9b5596c755210bffd"
mirror = "https://github.com/stackabletech/kafka.git"
1 change: 1 addition & 0 deletions kafka/stackable/patches/3.7.2/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/kafka.git"
base = "79a8f2b5f44f9d5a6867190d1dfc463d08d60b82"
mirror = "https://github.com/stackabletech/kafka.git"
1 change: 1 addition & 0 deletions kafka/stackable/patches/3.8.0/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/kafka.git"
base = "771b9576b00ecf5b64ab6e8bedf04156fbdb5cd6"
mirror = "https://github.com/stackabletech/kafka.git"
1 change: 1 addition & 0 deletions kafka/stackable/patches/3.9.0/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/kafka.git"
base = "84caaa6e9da06435411510a81fa321d4f99c351f"
mirror = "https://github.com/stackabletech/kafka.git"
1 change: 1 addition & 0 deletions nifi/stackable/patches/1.27.0/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/nifi.git"
base = "e0c4461d90bd4f6e5f2b81765bcff5cd97ed3e18"
mirror = "https://github.com/stackabletech/nifi.git"
1 change: 1 addition & 0 deletions nifi/stackable/patches/1.28.1/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/nifi.git"
base = "883338fe28883733417d10f6ffa9319e75f5ea06"
mirror = "https://github.com/stackabletech/nifi.git"
1 change: 1 addition & 0 deletions nifi/stackable/patches/2.2.0/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/nifi.git"
base = "b33ffac8aa10992482f7fa54e6cfccc46a5e8e27"
mirror = "https://github.com/stackabletech/nifi.git"
1 change: 1 addition & 0 deletions omid/stackable/patches/1.1.0/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/phoenix-omid.git"
base = "3b9e16b7537adbc90a7403507fb8aabd8d1fab0c"
mirror = "https://github.com/stackabletech/phoenix-omid.git"
1 change: 1 addition & 0 deletions omid/stackable/patches/1.1.1/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/phoenix-omid.git"
base = "cd546d58d93f380fec9bf65dbfa618f53493f662"
mirror = "https://github.com/stackabletech/phoenix-omid.git"
1 change: 1 addition & 0 deletions omid/stackable/patches/1.1.2/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/phoenix-omid.git"
base = "88812c9e127063f3b3016262f81ea3e8b48ec157"
mirror = "https://github.com/stackabletech/phoenix-omid.git"
1 change: 1 addition & 0 deletions omid/stackable/patches/1.1.3-SNAPSHOT/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/phoenix-omid.git"
base = "c3e4da626fdb27060fd139a809e057965e52d163"
mirror = "https://github.com/stackabletech/phoenix-omid.git"
91 changes: 86 additions & 5 deletions rust/patchable/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use std::{fs::File, io::Write, path::PathBuf};

use git2::{Oid, Repository};
use serde::{Deserialize, Serialize};
use snafu::{OptionExt, ResultExt as _, Snafu};
use snafu::{ensure, OptionExt, ResultExt as _, Snafu};
use tracing_indicatif::IndicatifLayer;
use tracing_subscriber::{layer::SubscriberExt as _, util::SubscriberInitExt as _};

Expand All @@ -29,6 +29,7 @@ struct ProductVersionConfig {
upstream: String,
#[serde(with = "utils::oid_serde")]
base: Oid,
mirror: Option<String>,
}

struct ProductVersionContext {
Expand Down Expand Up @@ -149,6 +150,11 @@ enum Cmd {
/// Refs (such as tags and branches) will be resolved to commit IDs.
#[clap(long)]
base: String,

/// Assume a mirror exists at stackabletech/<repo_name> and push the base ref to it.
/// The mirror URL will be stored in patchable.toml instead of the original upstream.
#[clap(long)]
mirrored: bool,
},

/// Shows the patch directory for a given product version
Expand Down Expand Up @@ -197,6 +203,18 @@ pub enum Error {
path: PathBuf,
},

#[snafu(display("failed to parse upstream URL {url:?} to extract repository name"))]
ParseUpstreamUrl { url: String },
#[snafu(display("failed to add temporary mirror remote for {url:?}"))]
AddMirrorRemote { source: git2::Error, url: String },
#[snafu(display("failed to push commit {commit} (as {refspec}) to mirror {url:?}"))]
PushToMirror {
source: git2::Error,
url: String,
refspec: String,
commit: Oid,
},

#[snafu(display("failed to find images repository"))]
FindImagesRepo { source: repo::Error },
#[snafu(display("images repository has no work directory"))]
Expand Down Expand Up @@ -287,7 +305,7 @@ fn main() -> Result<()> {
let base_commit = repo::resolve_and_fetch_commitish(
&product_repo,
&config.base.to_string(),
&config.upstream,
config.mirror.as_deref().unwrap_or(&config.upstream),
)
.context(FetchBaseCommitSnafu)?;
let base_branch = ctx.base_branch();
Expand Down Expand Up @@ -397,7 +415,12 @@ fn main() -> Result<()> {
);
}

Cmd::Init { pv, upstream, base } => {
Cmd::Init {
pv,
upstream,
base,
mirrored,
} => {
let ctx = ProductVersionContext {
pv,
images_repo_root,
Expand All @@ -414,13 +437,71 @@ fn main() -> Result<()> {
// --base can be a reference, but patchable.toml should always have a resolved commit id,
// so that it cannot be changed under our feet (without us knowing so, anyway...).
tracing::info!(?base, "resolving base commit-ish");
let base_commit = repo::resolve_and_fetch_commitish(&product_repo, &base, &upstream)
.context(FetchBaseCommitSnafu)?;
let base_commit = repo::resolve_and_fetch_commitish(&product_repo, &base, &upstream).context(FetchBaseCommitSnafu)?;
let mut upstream_mirror = None;

if mirrored {
// Parse e.g. "https://github.com/apache/druid.git" into "druid"
let repo_name = upstream.split('/').last().map(|repo| repo.trim_end_matches(".git")).context(ParseUpstreamUrlSnafu { url: &upstream })?;

ensure!(!repo_name.is_empty(), ParseUpstreamUrlSnafu { url: &upstream });

let mirror_url = format!("https://github.com/stackabletech/{}.git", repo_name);
tracing::info!(%mirror_url, "using mirror repository");

// Add mirror remote
let mut mirror_remote = product_repo
.remote_anonymous(&mirror_url)
.context(AddMirrorRemoteSnafu { url: mirror_url.clone() })?;

// Push the base commit to the mirror
tracing::info!(commit = %base_commit, base = base, url = mirror_url, "pushing commit to mirror");
let mut callbacks = git2::RemoteCallbacks::new();
callbacks.credentials(|_url, username_from_url, _allowed_types| {
git2::Cred::credential_helper(
&git2::Config::open_default().unwrap(), // Use default git config
_url,
username_from_url,
)
});

// Add progress tracking for push operation
let (span_push, mut quant_push) = utils::setup_progress_tracking(tracing::info_span!("pushing"));
callbacks.push_transfer_progress(move |current, total, _| {
if total > 0 {
quant_push.update_span_progress(
current,
total,
&span_push,
);
}
});

let mut push_options = git2::PushOptions::new();
push_options.remote_callbacks(callbacks);

let refspec = format!("{}:refs/tags/{}", base_commit, base);
tracing::info!(refspec = refspec, "constructed push refspec");

mirror_remote
.push(&[&refspec], Some(&mut push_options))
.context(PushToMirrorSnafu {
url: mirror_url.clone(),
refspec: &refspec,
commit: base_commit,
})?;

tracing::info!("successfully pushed base ref to mirror");

upstream_mirror = Some(mirror_url);
};

tracing::info!(?base, base.commit = ?base_commit, "resolved base commit");

tracing::info!("saving configuration");
let config = ProductVersionConfig {
upstream,
mirror: upstream_mirror,
base: base_commit,
};
let config_path = ctx.config_path();
Expand Down
16 changes: 6 additions & 10 deletions rust/patchable/src/repo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ use git2::{
WorktreeAddOptions,
};
use snafu::{ResultExt, Snafu};
use tracing_indicatif::span_ext::IndicatifSpanExt;

use crate::{
error::{self, CommitRef},
utils::{progress_bar_style, Quantizer},
utils::setup_progress_tracking,
};

#[derive(Debug, Snafu)]
Expand Down Expand Up @@ -149,15 +148,11 @@ pub fn resolve_and_fetch_commitish(
error = &err as &dyn std::error::Error,
"base commit not found locally, fetching from upstream"
);
let span_recv = tracing::info_span!("receiving");
let span_index = tracing::info_span!("indexing");
span_recv.pb_set_style(&progress_bar_style());
span_index.pb_set_style(&progress_bar_style());
let _ = span_recv.enter();
let _ = span_index.enter();

let (span_recv, mut quant_recv) = setup_progress_tracking(tracing::info_span!("receiving"));
let (span_index, mut quant_index) = setup_progress_tracking(tracing::info_span!("indexing"));

let mut callbacks = RemoteCallbacks::new();
let mut quant_recv = Quantizer::percent();
let mut quant_index = Quantizer::percent();
callbacks.transfer_progress(move |progress| {
quant_recv.update_span_progress(
progress.received_objects(),
Expand All @@ -171,6 +166,7 @@ pub fn resolve_and_fetch_commitish(
);
true
});

repo.remote_anonymous(upstream_url)
.context(CreateRemoteSnafu {
repo,
Expand Down
18 changes: 11 additions & 7 deletions rust/patchable/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@ use git2::Repository;
use tracing::Span;
use tracing_indicatif::{span_ext::IndicatifSpanExt, style::ProgressStyle};

pub fn progress_bar_style() -> ProgressStyle {
ProgressStyle::with_template(
"{span_child_prefix}{spinner} {span_name}{{{span_fields}}} {wide_msg} {bar:40} {percent:>3}%",
)
.expect("hard-coded template should be valid")
}

/// Runs a function whenever a `value` changes "enough".
///
/// See [`Self::update`], and especially [`Self::update_span_progress`].
Expand Down Expand Up @@ -94,3 +87,14 @@ pub mod oid_serde {
.and_then(|oid| Oid::from_str(&oid).map_err(<D::Error as serde::de::Error>::custom))
}
}

/// Sets up progress tracking for Git operations with a progress bar.
pub fn setup_progress_tracking(span: tracing::Span) -> (tracing::Span, Quantizer) {
span.pb_set_style(&ProgressStyle::with_template(
"{span_child_prefix}{spinner} {span_name}{{{span_fields}}} {wide_msg} {bar:40} {percent:>3}%",
)
.expect("hard-coded template should be valid"));
let _ = span.enter();
let quantizer = Quantizer::percent();
(span, quantizer)
}
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/hbase-connectors.git"
base = "e5217d13ed729703580ff2d1b02378ada2d94f4d"
mirror = "https://github.com/stackabletech/hbase-connectors.git"
1 change: 1 addition & 0 deletions spark-k8s/stackable/patches/3.5.2/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/spark.git"
base = "bb7846dd487f259994fdc69e18e03382e3f64f42"
mirror = "https://github.com/stackabletech/spark.git"
1 change: 1 addition & 0 deletions spark-k8s/stackable/patches/3.5.5/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/spark.git"
base = "7c29c664cdc9321205a98a14858aaf8daaa19db2"
mirror = "https://github.com/stackabletech/spark.git"
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/snowlift/trino-storage.git"
base = "b6e5825bb84a4f1a3f89ff45ea39ce349313f60a"
mirror = "https://github.com/stackabletech/trino-storage.git"
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/snowlift/trino-storage.git"
base = "869a735d8be527117a19150e161ad8ca69317578"
mirror = "https://github.com/stackabletech/trino-storage.git"
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/snowlift/trino-storage.git"
base = "1b25d617940f14a844a43ee34aa705f7d11fbaf9"
mirror = "https://github.com/stackabletech/trino-storage.git"
1 change: 1 addition & 0 deletions trino/stackable/patches/451/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/trinodb/trino.git"
base = "2c974f7cb1d71e1f9f466941a317190a474fc432"
mirror = "https://github.com/stackabletech/trino.git"
1 change: 1 addition & 0 deletions trino/stackable/patches/455/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/trinodb/trino.git"
base = "e212460ea0aa663f0de9b16fecd480c4ad6490cc"
mirror = "https://github.com/stackabletech/trino.git"
1 change: 1 addition & 0 deletions trino/stackable/patches/470/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/trinodb/trino.git"
base = "05bc059cf0c9263e4ee8be2c1ad69753d0dd4faf"
mirror = "https://github.com/stackabletech/trino.git"
1 change: 1 addition & 0 deletions zookeeper/stackable/patches/3.9.2/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/zookeeper.git"
base = "e454e8c7283100c7caec6dcae2bc82aaecb63023"
mirror = "https://github.com/stackabletech/zookeeper.git"
1 change: 1 addition & 0 deletions zookeeper/stackable/patches/3.9.3/patchable.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
upstream = "https://github.com/apache/zookeeper.git"
base = "c26634f34490bb0ea7a09cc51e05ede3b4e320ee"
mirror = "https://github.com/stackabletech/zookeeper.git"