From d88a4b38be331bc04693f1ec3869aa5c6b96b600 Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Wed, 22 Jul 2009 11:36:50 -0700 Subject: [PATCH] Hadoop: CephInputStream seekNewSource done. That was easy. --- src/client/hadoop/ceph/CephInputStream.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/client/hadoop/ceph/CephInputStream.java b/src/client/hadoop/ceph/CephInputStream.java index 79b747c6a4e6b..71b09e16e843b 100644 --- a/src/client/hadoop/ceph/CephInputStream.java +++ b/src/client/hadoop/ceph/CephInputStream.java @@ -96,9 +96,11 @@ class CephInputStream extends FSInputStream { ceph_seek_from_start(targetPos); } - //method stub obviously + //failovers are handled by the Ceph code at a very low level; + //if there are issues that can be solved by changing sources + //they'll be dealt with before anybody even tries to call this method! public synchronized boolean seekToNewSource(long targetPos) { - return true; + return false; } -- 2.39.5