matrix-org / matrix-federation-tester

Tester for matrix federation written in golang.
78 stars 17 forks source link

Remove per-connection well-known info #71

Closed anoadragon453 closed 5 years ago

anoadragon453 commented 5 years ago

As per #57, there's no reason to have a well-known result per-connection, especially when it just copies the top-level result anyways. For now we just keep the top-level and remove the per-connection ones, leaving an empty (but likely useful in the future) per-connection info field.

The UI will likely have to be changed to display well-known status in a more prominent way.

Results in:

...
Info: {}
...

now in each connection, as opposed to:

...
Info: {
    WellKnownInUse: false
}
...

Closes #57