Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15394770
D12354.id29754.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
D12354.id29754.diff
View Options
diff --git a/src/applications/paste/query/PhabricatorPasteQuery.php b/src/applications/paste/query/PhabricatorPasteQuery.php
--- a/src/applications/paste/query/PhabricatorPasteQuery.php
+++ b/src/applications/paste/query/PhabricatorPasteQuery.php
@@ -90,7 +90,7 @@
}
if ($this->needContent) {
- $pastes = $this->loadContent($pastes);
+ $this->loadContent($pastes);
}
return $pastes;
@@ -203,21 +203,19 @@
}
$caches = $cache->getKeys($keys);
- $results = array();
$need_raw = array();
foreach ($pastes as $key => $paste) {
$key = $this->getContentCacheKey($paste);
if (isset($caches[$key])) {
$paste->attachContent(phutil_safe_html($caches[$key]));
- $results[$paste->getID()] = $paste;
} else {
$need_raw[$key] = $paste;
}
}
if (!$need_raw) {
- return $results;
+ return;
}
$write_data = array();
@@ -226,14 +224,10 @@
foreach ($need_raw as $key => $paste) {
$content = $this->buildContent($paste);
$paste->attachContent($content);
-
$write_data[$this->getContentCacheKey($paste)] = (string)$content;
- $results[$paste->getID()] = $paste;
}
$cache->setKeys($write_data);
-
- return $results;
}
private function buildContent(PhabricatorPaste $paste) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 17, 1:04 AM (2 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7706671
Default Alt Text
D12354.id29754.diff (1 KB)
Attached To
Mode
D12354: Fix an issue where pastes could be reordered as a side effect of cache fills
Attached
Detach File
Event Timeline
Log In to Comment