Add field backup_source_name to repo_config

Summary:
Remove logic of striping `_backup` suffix and get source repo from configerator.
Has dependency on D25571595. And should be landed after it.

Reviewed By: krallin

Differential Revision: D25420829

fbshipit-source-id: 50e2fe2bede849ba622dcbde2a360b08e640901a
This commit is contained in:
Egor Tkachenko 2020-12-17 04:28:01 -08:00 committed by Facebook GitHub Bot
parent bcc4524033
commit 7ba932a332

View File

@ -1,4 +1,4 @@
// @generated SignedSource<<3f662d65ad6ac98980fa52dbdf82061f>> // @generated SignedSource<<c12862a429e134ac5fbf5f6d6e7a7526>>
// DO NOT EDIT THIS FILE MANUALLY! // DO NOT EDIT THIS FILE MANUALLY!
// This file is a mechanical copy of the version in the configerator repo. To // This file is a mechanical copy of the version in the configerator repo. To
// modify it, edit the copy in the configerator repo instead and copy it over by // modify it, edit the copy in the configerator repo instead and copy it over by
@ -129,6 +129,13 @@ struct RawRepoConfig {
// A collection of knobs to enable/disable functionality in repo_client module // A collection of knobs to enable/disable functionality in repo_client module
42: optional RawRepoClientKnobs repo_client_knobs, 42: optional RawRepoClientKnobs repo_client_knobs,
43: optional string phabricator_callsign, 43: optional string phabricator_callsign,
// Define parameters for backups jobs
44: optional RawBackupRepoConfig backup_config
}
struct RawBackupRepoConfig {
1: string backup_source_name,
2: bool verification_enabled,
} }
struct RawRepoClientKnobs { struct RawRepoClientKnobs {