diff --git a/hgitaly/service/repository.py b/hgitaly/service/repository.py
index 9fd108e994a94c143b61f468acd8f2105a7d4ded_aGdpdGFseS9zZXJ2aWNlL3JlcG9zaXRvcnkucHk=..1c735d40cfe77927550c2b90d2f63c51311ef73e_aGdpdGFseS9zZXJ2aWNlL3JlcG9zaXRvcnkucHk= 100644
--- a/hgitaly/service/repository.py
+++ b/hgitaly/service/repository.py
@@ -515,10 +515,4 @@
         # asynchronous (as the Rails app does), but it is not in the
         # Gitaly server implementation. The renaming is done for
         # atomicity purposes.
-        try:
-            repo_path = self.repo_disk_path(request.repository, context)
-        except KeyError as exc:
-            self.handle_key_error(context, exc.args)
-        except ValueError as exc:
-            self.handle_value_error(context, exc.args)
 
@@ -524,11 +518,9 @@
 
-        if not os.path.exists(repo_path):
-            # same error message as Gitaly (probably no need to repeat
-            # repo details, since request often logged client-side)
-            context.abort(StatusCode.NOT_FOUND, "repository does not exist")
+        repo = self.load_repo(request.repository, context)
+        repo_path = repo.root
 
         try:
             workdirs = self.repo_workdirs_root(request.repository, context)
             # TODO since we're doing this, we might as well do it from
             # the onset and avoid repeating exception treatment OR we could
             # do the cleanup in `CreateRepository` and friends
@@ -529,10 +521,9 @@
 
         try:
             workdirs = self.repo_workdirs_root(request.repository, context)
             # TODO since we're doing this, we might as well do it from
             # the onset and avoid repeating exception treatment OR we could
             # do the cleanup in `CreateRepository` and friends
-            repo = self.load_repo(request.repository, context)
             remove_all_workdirs(workdirs, repo)
         except Exception:
             # we don't want to prevent the removal for this
diff --git a/tests_with_gitaly/test_repository_service.py b/tests_with_gitaly/test_repository_service.py
index 9fd108e994a94c143b61f468acd8f2105a7d4ded_dGVzdHNfd2l0aF9naXRhbHkvdGVzdF9yZXBvc2l0b3J5X3NlcnZpY2UucHk=..1c735d40cfe77927550c2b90d2f63c51311ef73e_dGVzdHNfd2l0aF9naXRhbHkvdGVzdF9yZXBvc2l0b3J5X3NlcnZpY2UucHk= 100644
--- a/tests_with_gitaly/test_repository_service.py
+++ b/tests_with_gitaly/test_repository_service.py
@@ -192,6 +192,7 @@
                           repository=Repository(storage_name='unknown',
                                                 relative_path='/some/path'))
     assert_compare_errors(
+        same_details=False,
         repository=Repository(storage_name=grpc_repo.storage_name,
                               relative_path='no/such/path'))