Skip to content
Snippets Groups Projects
Unverified Commit 48241e6c authored by Noah Moss's avatar Noah Moss Committed by GitHub
Browse files

Ignore exceptions when updating permissions in test macro (#22162)

* ignore exceptions when updating perms for tests

* ignore exceptions in finally block as well

* restore correct graph
parent 2eab38b6
No related branches found
No related tags found
No related merge requests found
......@@ -22,10 +22,12 @@
(memoize/memo-clear! @#'field/cached-perms-object-set)
(try
(mt/with-model-cleanup [Permissions]
(@#'perms/update-group-permissions! all-users-group-id graph)
(u/ignore-exceptions
(@#'perms/update-group-permissions! all-users-group-id graph))
(f))
(finally
(@#'perms/update-group-permissions! all-users-group-id current-graph))))))
(u/ignore-exceptions
(@#'perms/update-group-permissions! all-users-group-id current-graph)))))))
(defmacro ^:private with-all-users-data-perms
"Runs `f` with perms for the All Users group temporarily set to the values in `graph`. Also enables the advanced
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment