Skip to content

Commit 35a69f5

Browse files
committed
s/delivey/delivery
1 parent f78c588 commit 35a69f5

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

nexus/db-queries/src/db/datastore/webhook_delivery.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ impl DataStore {
9797
use diesel::dsl::*;
9898
let (delivery, also_delivery) = diesel::alias!(
9999
schema::webhook_delivery as delivery,
100-
schema::webhook_delivery as also_delivey
100+
schema::webhook_delivery as also_delivery
101101
);
102102
alert_dsl::alert
103103
.filter(alert_dsl::alert_class.ne(AlertClass::Probe))

nexus/db-queries/tests/output/webhook_rx_list_resendable_events.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ WHERE
1515
(
1616
EXISTS(
1717
SELECT
18-
also_delivey.id
18+
also_delivery.id
1919
FROM
20-
webhook_delivery AS also_delivey
20+
webhook_delivery AS also_delivery
2121
WHERE
22-
(also_delivey.alert_id = alert.id AND also_delivey.state != $3)
23-
AND also_delivey.triggered_by != $4
22+
(also_delivery.alert_id = alert.id AND also_delivery.state != $3)
23+
AND also_delivery.triggered_by != $4
2424
)
2525
)

nexus/types/src/external_api/views.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,7 @@ impl std::str::FromStr for AlertDeliveryTrigger {
13221322
/// A list of attempts to deliver an alert to a receiver.
13231323
///
13241324
/// The type of the delivery attempt model depends on the receiver type, as it
1325-
/// may contain information specific to that delivey mechanism. For example,
1325+
/// may contain information specific to that delivery mechanism. For example,
13261326
/// webhook delivery attempts contain the HTTP status code of the webhook
13271327
/// request.
13281328
#[derive(Clone, Debug, PartialEq, Eq, Deserialize, Serialize, JsonSchema)]

openapi/nexus.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13329,7 +13329,7 @@
1332913329
]
1333013330
},
1333113331
"AlertDeliveryAttempts": {
13332-
"description": "A list of attempts to deliver an alert to a receiver.\n\nThe type of the delivery attempt model depends on the receiver type, as it may contain information specific to that delivey mechanism. For example, webhook delivery attempts contain the HTTP status code of the webhook request.",
13332+
"description": "A list of attempts to deliver an alert to a receiver.\n\nThe type of the delivery attempt model depends on the receiver type, as it may contain information specific to that delivery mechanism. For example, webhook delivery attempts contain the HTTP status code of the webhook request.",
1333313333
"oneOf": [
1333413334
{
1333513335
"description": "A list of attempts to deliver an alert to a webhook receiver.",

0 commit comments

Comments
 (0)