diff --git a/pom.xml b/pom.xml
index 07a21d4..d4fcd52 100644
--- a/pom.xml
+++ b/pom.xml
@@ -64,7 +64,7 @@
21
3.7.1
6.2.8.1_1
- 6.1.1
+ 6.1.3-SNAPSHOT
6.5.0
2023.0.5
0.52
@@ -295,6 +295,7 @@
**/env.properties
**/messages.properties
+ **/logback-test.xml
diff --git a/src/main/java/edu/iu/uits/lms/courseattributeeditor/config/CustomRoleMapper.java b/src/main/java/edu/iu/uits/lms/courseattributeeditor/config/CustomRoleMapper.java
index 3f91524..9b99869 100644
--- a/src/main/java/edu/iu/uits/lms/courseattributeeditor/config/CustomRoleMapper.java
+++ b/src/main/java/edu/iu/uits/lms/courseattributeeditor/config/CustomRoleMapper.java
@@ -75,7 +75,7 @@ public Collection extends GrantedAuthority> mapAuthorities(Collection extend
ArrayList roles = new ArrayList<>();
- AuthorizedUser user = authorizedUserService.findByUsernameAndToolPermission(userId, AUTH_USER_TOOL_PERMISSION);
+ AuthorizedUser user = authorizedUserService.findByActiveUsernameAndToolPermission(userId, AUTH_USER_TOOL_PERMISSION);
if (user != null) {
rolesString = LTIConstants.CANVAS_INSTRUCTOR_ROLE;
diff --git a/src/test/resources/logback-test.xml b/src/test/resources/logback-test.xml
new file mode 100644
index 0000000..58590ea
--- /dev/null
+++ b/src/test/resources/logback-test.xml
@@ -0,0 +1,16 @@
+
+
+
+
+ %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file