1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Stop writes to the old Relationship table

Summary: Ref T1279. The new stuff seems stable, so stop writes to the old tables.

Test Plan:
  - Added and removed reviewers.
  - Grepped for `::RELATIONSHIP_TABLE` to verify we really have no more reads.
  - Grepped for `::RELATION_REVIEWER`.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T1279

Differential Revision: https://secure.phabricator.com/D7360
This commit is contained in:
epriestley 2013-10-21 16:59:22 -07:00
parent 7fedfacbca
commit c69beb7988

View file

@ -618,15 +618,6 @@ final class DifferentialRevisionEditor extends PhabricatorEditor {
$reviewers = $revision->getReviewers();
// This is here until the new way proves stable enough
// See https://secure.phabricator.com/T1279
self::alterReviewers(
$revision,
$reviewers,
$remove_phids,
$add_phids,
$actor->getPHID());
$editor = id(new PhabricatorEdgeEditor())
->setActor($actor);
@ -679,18 +670,6 @@ final class DifferentialRevisionEditor extends PhabricatorEditor {
$reviewer_phid,
$status) {
$reviewers = $revision->getReviewers();
if (!in_array($reviewer_phid, $reviewers)) {
// This is here until the new way proves stable enough
// See https://secure.phabricator.com/T1279
self::alterReviewers(
$revision,
$reviewers,
array(),
array($reviewer_phid),
$actor->getPHID());
}
$options = array(
'data' => array(
'status' => $status
@ -712,25 +691,6 @@ final class DifferentialRevisionEditor extends PhabricatorEditor {
->save();
}
/**
* @deprecated
*/
private static function alterReviewers(
DifferentialRevision $revision,
array $stable_phids,
array $rem_phids,
array $add_phids,
$reason_phid) {
return self::alterRelationships(
$revision,
$stable_phids,
$rem_phids,
$add_phids,
$reason_phid,
DifferentialRevision::RELATION_REVIEWER);
}
private static function alterRelationships(
DifferentialRevision $revision,
array $stable_phids,