 e10fdbe77e
			
		
	
	e10fdbe77e
	
	
	
		
			
			Summary: Patches often read from slaves (possibly stale data) and use that information to write on master. It causes problems when applying more patches quickly after each other because data created in previous patch may not be replicated yet. Test Plan: $ bin/storage upgrade Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4483
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| echo "Stripping remotes from repository default branches...\n";
 | |
| 
 | |
| $table = new PhabricatorRepository();
 | |
| $table->openTransaction();
 | |
| $conn_w = $table->establishConnection('w');
 | |
| 
 | |
| $repos = queryfx_all(
 | |
|   $conn_w,
 | |
|   'SELECT id, name, details FROM %T WHERE versionControlSystem = %s FOR UPDATE',
 | |
|   $table->getTableName(),
 | |
|   'git');
 | |
| 
 | |
| foreach ($repos as $repo) {
 | |
|   $details = json_decode($repo['details'], true);
 | |
| 
 | |
|   $old = idx($details, 'default-branch', '');
 | |
|   if (strpos($old, '/') === false) {
 | |
|     continue;
 | |
|   }
 | |
| 
 | |
|   $parts = explode('/', $old);
 | |
|   $parts = array_filter($parts);
 | |
|   $new = end($parts);
 | |
| 
 | |
|   $details['default-branch'] = $new;
 | |
|   $new_details = json_encode($details);
 | |
| 
 | |
|   $id = $repo['id'];
 | |
|   $name = $repo['name'];
 | |
| 
 | |
|   echo "Updating default branch for repository #{$id} '{$name}' from ".
 | |
|        "'{$old}' to '{$new}' to remove the explicit remote.\n";
 | |
|   queryfx(
 | |
|     $conn_w,
 | |
|     'UPDATE %T SET details = %s WHERE id = %d',
 | |
|     $table->getTableName(),
 | |
|     $new_details,
 | |
|     $id);
 | |
| }
 | |
| 
 | |
| $table->saveTransaction();
 | |
| echo "Done.\n";
 |