Skip to content

Commit

Permalink
Add warning about possibly unresolvable 3PID invites
Browse files Browse the repository at this point in the history
  • Loading branch information
maxidorius committed May 13, 2019
1 parent 321ba1e commit cd890d1
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit cd890d1

Please sign in to comment.