Skip to content

Commit

Permalink
last resort
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Käser committed Aug 11, 2015
1 parent 465f645 commit 90fdcee
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ipynbsrv/core/signals/container_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ def delete_on_server(sender, image, **kwargs):
backend.delete_container_image(image.backend_pk)
except ContainerImageNotFoundError:
pass # already removed
except ContainerBackendError as ex:
except ContainerBackendError:
# XXX: restore?
raise ex
# raise ex
pass


@receiver(post_delete, sender=ContainerImage)
Expand Down

0 comments on commit 90fdcee

Please sign in to comment.