Skip to content

Commit

Permalink
Remove print on volume create
Browse files Browse the repository at this point in the history
We shouldn't be printing stuff if it succeeds, we're a daemon.

Signed-off-by: Andy Grover <agrover@redhat.com>
  • Loading branch information
Andy Grover committed Oct 17, 2012
1 parent 0aecb17 commit 3151963
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion targetd
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ def volumes(req, pool):
def create(req, pool, name, size): def create(req, pool, name, size):
with vgopen(pool) as vg: with vgopen(pool) as vg:
lv = vg.createLvLinear(name, int(size)) lv = vg.createLvLinear(name, int(size))
print "LV %s created, size %s" % (name, lv.getSize())


def destroy(req, pool, name): def destroy(req, pool, name):
try: try:
Expand Down

0 comments on commit 3151963

Please sign in to comment.