From 3877da6efa65553f741931836eecf61aaf4994f1 Mon Sep 17 00:00:00 2001 From: Damian Martinez Date: Wed, 8 Jun 2016 17:05:12 -0700 Subject: [PATCH] Bump version to 1.2.2 for release of possible bug fix for locking issue #5 --- CHANGELOG.md | 10 ++++++++++ version.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55ed368..e540c6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ We attempt to adhere to [Semantic Versioning](http://semver.org/). ### Removed ### Changed +## [1.2.2] - 2016-06-08 +### Changed +- Docker is calling Unmount after failed Mount, causing trouble if + device is still in use by another container (locked by same node). +The workaround / hack is to bail earlier in Unmount API call if rbd +unmap fails with busy device error. This can leave the device usable but +possibly in a funky state (unmounted from host but still mounted and +accessible inside container) +- related to porcupie/rbd-docker-plugin#5 + ## [1.2.1] - 2016-06-02 ### Changed - When rbd map does not return device name but no error, try default diff --git a/version.go b/version.go index 0d77d5c..5fbd856 100644 --- a/version.go +++ b/version.go @@ -3,4 +3,4 @@ // license that can be found in the LICENSE file. package main -const VERSION = "1.2.1" +const VERSION = "1.2.2"