From 86698c27899ae411c01415b23db1a07a1e3da61d Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Mon, 30 Mar 2020 12:19:40 +0200 Subject: [PATCH] FIXUP typo in environment variable --- endpoint/endpoint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoint/endpoint.go b/endpoint/endpoint.go index 14de061..49e7d08 100644 --- a/endpoint/endpoint.go +++ b/endpoint/endpoint.go @@ -160,7 +160,7 @@ func (p *Sender) HintMostRecentCommonAncestor(ctx context.Context, r *pdu.HintMo return &pdu.HintMostRecentCommonAncestorRes{}, nil } -var hintMostRecentCommonAncestorDoNotCleanupStepHolds = envconst.Bool("ZREPL_ENDPOINT_HINT_MOST_RECENT_DO_NOT_CLEANUP_STEPH_HOLDS", false) +var hintMostRecentCommonAncestorDoNotCleanupStepHolds = envconst.Bool("ZREPL_ENDPOINT_HINT_MOST_RECENT_DO_NOT_CLEANUP_STEP_HOLDS", false) var maxConcurrentZFSSendSemaphore = semaphore.New(envconst.Int64("ZREPL_ENDPOINT_MAX_CONCURRENT_SEND", 10))