Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
wamdam committed Feb 27, 2019
1 parent 4fcc7d2 commit af96dfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/backy2/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
[io_rbd]
rados_name: client.admin
cluster_name. ceph
cluster_name: ceph
simultaneous_reads: 1
"""

Expand Down
2 changes: 1 addition & 1 deletion src/backy2/io/rbd.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, config, block_size, hash_function):
self._inqueue = queue.Queue() # infinite size for all the blocks
self._outqueue = queue.Queue(self.simultaneous_reads)
cluster_name = config.get('cluster_name')
rados_name = config.get('rados.name')
rados_name = config.get('rados_name')
self.cluster = rados.Rados(conffile=ceph_conffile, name=rados_name, clustername=cluster_name)
self.cluster.connect()
# create a bitwise or'd list of the configured features
Expand Down

0 comments on commit af96dfe

Please sign in to comment.