Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15430909
D20056.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D20056.diff
View Options
diff --git a/src/applications/differential/engine/DifferentialDiffExtractionEngine.php b/src/applications/differential/engine/DifferentialDiffExtractionEngine.php
--- a/src/applications/differential/engine/DifferentialDiffExtractionEngine.php
+++ b/src/applications/differential/engine/DifferentialDiffExtractionEngine.php
@@ -177,14 +177,21 @@
'repository' => $repository,
));
- $response = DiffusionQuery::callConduitWithDiffusionRequest(
- $viewer,
- $drequest,
- 'diffusion.filecontentquery',
- array(
- 'commit' => $identifier,
- 'path' => $path,
- ));
+ try {
+ $response = DiffusionQuery::callConduitWithDiffusionRequest(
+ $viewer,
+ $drequest,
+ 'diffusion.filecontentquery',
+ array(
+ 'commit' => $identifier,
+ 'path' => $path,
+ ));
+ } catch (Exception $ex) {
+ // TODO: See PHI1044. This call may fail if the diff deleted the
+ // file. If the call fails, just detect a change for now. This should
+ // generally be made cleaner in the future.
+ return true;
+ }
$new_file_phid = $response['filePHID'];
if (!$new_file_phid) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 25, 9:36 AM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7710478
Default Alt Text
D20056.diff (1 KB)
Attached To
Mode
D20056: Allow diff change detection to complete for Mercurial changes which remove a binary file
Attached
Detach File
Event Timeline
Log In to Comment