diff --git a/src/main/java/io/kamax/mxisd/invitation/InvitationManager.java b/src/main/java/io/kamax/mxisd/invitation/InvitationManager.java index 53bc1a8c..f4c0b777 100644 --- a/src/main/java/io/kamax/mxisd/invitation/InvitationManager.java +++ b/src/main/java/io/kamax/mxisd/invitation/InvitationManager.java @@ -512,6 +512,9 @@ public void run() { publishMapping(reply, lookup.getMxid().getId()); } else { log.info("No mapping for pending invite {}", getIdForLog(reply)); + if (lookupMgr.getLocalProviders().isEmpty()) { + log.warn("No Identity store has been configured, this invite may never resolve"); + } } } catch (Throwable t) { log.error("Unable to process invite", t);