This is an automated email from the ASF dual-hosted git repository.
abukor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new ae776c1 Fix a Google+ link
ae776c1 is described below
commit ae776c12895b1f2a60b95749d7a8cb31d0e841ad
Author: Attila Bukor <[email protected]>
AuthorDate: Fri Sep 4 11:18:55 2020 +0200
Fix a Google+ link
When fixing KUDU-2260 a Google+ link was added for additional context in
a comment. As Google+ was shut down since then, this link is now dead.
Tried replacing it with a Wayback Machine link, but it doesn't seem to
load anymore either. Unfortunately I couldn't find a more formal
documentation for this, but at least Alexey managed to find an
explanation on Hacker News (there also happens to be a link to the
Google+ post in that thread). Hopefully it stays online for far longer
than Google+.
Change-Id: I7e10e49b08428079d3134e9291328e4508822ecf
Reviewed-on: http://gerrit.cloudera.org:8080/16279
Tested-by: Attila Bukor <[email protected]>
Reviewed-by: Grant Henke <[email protected]>
---
src/kudu/util/pb_util.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/kudu/util/pb_util.cc b/src/kudu/util/pb_util.cc
index f3855f0..5a3fb8a 100644
--- a/src/kudu/util/pb_util.cc
+++ b/src/kudu/util/pb_util.cc
@@ -315,7 +315,7 @@ Status ReadPBStartingAt(ReadableFileType* reader, int
version,
// the file is all 0's, then it's an incomplete record, not corruption.
// This can happen e.g. on ext4 in the default data=ordered mode, when the
// filesize metadata is updated but the new data is not persisted.
- // See https://plus.google.com/+KentonVarda/posts/JDwHfAiLGNQ.
+ // See https://news.ycombinator.com/item?id=11512006
if (IsAllZeros(length_and_cksum_buf)) {
bool all_zeros = false;
RETURN_NOT_OK(RestOfFileIsAllZeros(reader, file_size, tmp_offset,
&all_zeros));