Skip to content

feat: replace status mutex with RWMutex

feistel requested to merge feistel/gitlab-shell:feat/status-rwmutex into main

A RWMutex can be held by an arbitrary number of readers or a single writer.

statusMu is (potentially) read when handling connections so this should decrease/avoid lock contention.

Edited by feistel

Merge request reports