mononoke: make parameter name clearer

Reviewed By: krallin

Differential Revision: D24282032

fbshipit-source-id: d004f61fd6b13bc41d88e5659c428ab8ed1cb264
This commit is contained in:
Stanislau Hlebik 2020-10-13 23:41:43 -07:00 committed by Facebook GitHub Bot
parent 3b956b35d0
commit b83be196e5

View File

@ -444,6 +444,6 @@ pub async fn open_backsyncer_dbs(
})
}
pub fn format_counter(source_repo_id: &RepositoryId) -> String {
format!("backsync_from_{}", source_repo_id.id())
pub fn format_counter(repo_to_backsync_from: &RepositoryId) -> String {
format!("backsync_from_{}", repo_to_backsync_from.id())
}