0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-14 02:18:34 +02:00
This commit is contained in:
Vt 2024-05-02 07:25:41 -07:00 committed by GitHub
commit a231f3b6d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View file

@ -79,7 +79,7 @@ func NewInternalAPI(
return appserviceQueryAPI
}
// generateAppServiceAccounts creates a dummy account based off the
// generateAppServiceAccount creates a dummy account based off the
// `sender_localpart` field of each application service if it doesn't
// exist already
func generateAppServiceAccount(

View file

@ -649,7 +649,7 @@ func (r *FederationInternalAPI) SendInviteV3(
return inviteEvent, nil
}
// PerformServersAlive implements api.FederationInternalAPI
// PerformBroadcastEDU implements api.FederationInternalAPI
func (r *FederationInternalAPI) PerformBroadcastEDU(
ctx context.Context,
request *api.PerformBroadcastEDURequest,

View file

@ -76,7 +76,7 @@ func (d *Database) AssociateEDUWithDestinations(
})
}
// GetNextTransactionEDUs retrieves events from the database for
// GetPendingEDUs retrieves events from the database for
// the next pending transaction, up to the limit specified.
func (d *Database) GetPendingEDUs(
ctx context.Context,
@ -166,7 +166,7 @@ func (d *Database) CleanEDUs(
})
}
// GetPendingServerNames returns the server names that have EDUs
// GetPendingEDUServerNames returns the server names that have EDUs
// waiting to be sent.
func (d *Database) GetPendingEDUServerNames(
ctx context.Context,

View file

@ -145,7 +145,7 @@ func (d *Database) CleanPDUs(
})
}
// GetPendingServerNames returns the server names that have PDUs
// GetPendingPDUServerNames returns the server names that have PDUs
// waiting to be sent.
func (d *Database) GetPendingPDUServerNames(
ctx context.Context,