Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/gitaly/storage/storagemgr/partition_manager.go')
-rw-r--r--internal/gitaly/storage/storagemgr/partition_manager.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/gitaly/storage/storagemgr/partition_manager.go b/internal/gitaly/storage/storagemgr/partition_manager.go
index 045da1d0a..ad36f4f5e 100644
--- a/internal/gitaly/storage/storagemgr/partition_manager.go
+++ b/internal/gitaly/storage/storagemgr/partition_manager.go
@@ -178,7 +178,7 @@ func (sm *storageManager) newFinalizableTransaction(ptn *partition, tx *Transact
type partition struct {
// closing is closed when the partition has no longer any active transactions.
closing chan struct{}
- // transactionManagerClosed is closed to signal when the partition's TranscationManager.Run has returned.
+ // transactionManagerClosed is closed to signal when the partition's TransactionManager.Run has returned.
// Clients stumbling on the partition when it is closing wait on this channel to know when the previous
// TransactionManager has closed and it is safe to start another one.
transactionManagerClosed chan struct{}