Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
immesys committed Jul 10, 2018
1 parent 9e629ba commit 122e115
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion acl/acl.go
Expand Up @@ -422,7 +422,6 @@ func (e *ACLEngine) GetPublicUser() (*User, error) {
cached, ok := e.cachedUsersByKey["public"]
e.cachedUsersMu.Unlock()
if ok && cached.Expiry.After(time.Now()) {
fmt.Printf("expiry time: %s\n", cached.Expiry)
return cached.User, nil
}
fmt.Printf("public user cache miss\n")
Expand Down
2 changes: 1 addition & 1 deletion containers/adminconsole/Dockerfile
Expand Up @@ -5,7 +5,7 @@ ENV CEPH_VERSION jewel
RUN apt-get update && apt-get install -y wget && \
wget -q -O- 'https://download.ceph.com/keys/release.asc' | apt-key add - && \
echo "deb http://download.ceph.com/debian-${CEPH_VERSION}/ xenial main" | tee /etc/apt/sources.list.d/ceph-${CEPH_VERSION}.list && \
apt-get update && apt-get install -y librados-dev && \
apt-get update && apt-get install -y librados-dev ceph && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENV GOTRACEBACK=all
ADD admincliserver /bin/
Expand Down
2 changes: 1 addition & 1 deletion tools/btrdbdu/main.go
Expand Up @@ -10,7 +10,7 @@ import (
"strings"

"github.com/BTrDB/btrdb"
"github.com/immesys/rados"
"github.com/immesys/go-ceph/rados"
"github.com/pborman/uuid"
"github.com/urfave/cli"
)
Expand Down
2 changes: 1 addition & 1 deletion tools/version.go
@@ -1,5 +1,5 @@
package tools

const VersionMajor = 4
const VersionMinor = 12
const VersionMinor = 13
const VersionPatch = 0

0 comments on commit 122e115

Please sign in to comment.