Skip to content

Commit

Permalink
Don't warn if kadi user can't access db
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanconn committed Apr 1, 2024
1 parent 9716235 commit 061254c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mica/report/tests/test_write_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
except Exception as e:
HAS_SYBASE_ACCESS = False

# If the user should have access, warn about the issue.
if on_head_network():
# If the user should have access, warn about the issue. kadi user does not have access.
if on_head_network() and user != 'kadi':
warn(f"On HEAD but Sqsh did not work. {e}")


Expand Down

0 comments on commit 061254c

Please sign in to comment.