Skip to content

Commit

Permalink
PendingReleaseNotes: update regarding librados change
Browse files Browse the repository at this point in the history
Fix related to issue ceph#6444

Signed-off-by: Yehuda Sadeh <[email protected]>
  • Loading branch information
yehudasa committed Sep 30, 2013
1 parent 8912462 commit b032931
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion PendingReleaseNotes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
v0.70
~~~~~
* librados::Rados::pool_create_async() and librados::Rados::pool_delete_async()
don't drop a reference to the completion object on error, caller needs to take
care of that. This has never really worked correctly and we were leaking an
object

v0.68
~~~~~

Expand Down Expand Up @@ -25,4 +32,4 @@ v0.68
full-width value. The old method is deprecated and will be removed
in a future release. Users of the C++ librados API that make use of
the get_version() method should modify their code to avoid getting a
value that is truncated from 64 to to 32 bits.
value that is truncated from 64 to to 32 bits.
4 changes: 2 additions & 2 deletions src/vstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -249,11 +249,11 @@ if [ -n "$ip" ]; then
IP="$ip"
else
echo hostname $HOSTNAME
RAW_IP=`hostname --ip-address`
RAW_IP=`hostname -I`
# filter out IPv6 and localhost addresses
IP="$(echo "$RAW_IP"|tr ' ' '\012'|grep -v :|grep -v '^127\.'|head -n1)"
# if that left nothing, then try to use the raw thing, it might work
if [ -z "IP" ]; then IP="$RAW_IP"; fi
if [ -z "$IP" ]; then IP="$RAW_IP"; fi
echo ip $IP
fi
echo "ip $IP"
Expand Down

0 comments on commit b032931

Please sign in to comment.