Skip to content

Commit 920edbb

Browse files
authored
Merge pull request #5112 from chu11/mergify_add_spelling_check
mergify: add spelling check to required checks
2 parents 155f0f2 + e746961 commit 920edbb

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.mergify.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ queue_rules:
33
conditions:
44
- base=master
55
- status-success="validate commits"
6+
- status-success="spelling"
67
- status-success="flux-sched check"
78
- status-success="flux-accounting check"
89
- status-success="python linting"

src/modules/sdbus/connect.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*
2020
* If first_time=true, connect immediately; otherwise, wait retry_min secs.
2121
* If the initial connect is unsuccessful, retry in retry_min secs. If that
22-
* is unsuccessful, back off exponentialy, leveling off at retry_max secs
22+
* is unsuccessful, back off exponentially, leveling off at retry_max secs
2323
* between attempts.
2424
*
2525
* Connect attempt successes and failures are logged at LOG_INFO level.

src/modules/sdbus/interface.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* D-Bus (interface, member) that we need in Flux requires translation
1515
* callbacks here for now.
1616
*
17-
* To list sytemd Manager methods and signatures:
17+
* To list systemd Manager methods and signatures:
1818
* busctl --user introspect \
1919
* org.freedesktop.systemd1 \
2020
* /org/freedesktop/systemd1 \

src/modules/sdbus/message.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ int sdmsg_get (sd_bus_message *m, const char *fmt, json_t **op);
3535

3636
/* Get list of values specified by 'fmt' from message 'm' at the current cursor
3737
* position and append them to the json array 'o'.
38-
* Return 1 on success, or -errno on falure.
38+
* Return 1 on success, or -errno on failure.
3939
*/
4040
int sdmsg_read (sd_bus_message *m, const char *fmt, json_t *o);
4141

src/modules/sdbus/sdbus.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ static void sdbus_recv (struct sdbus_ctx *ctx, sd_bus_message *m)
172172
log_msg_signal (ctx->h, m, "drop");
173173
goto out;
174174
}
175-
/* Handled signals are loged as a "recv". Dispatch them to
175+
/* Handled signals are logged as a "recv". Dispatch them to
176176
* subscribers here. N.B. There is no subscriber filtering yet.
177177
* Perhaps later if needed.
178178
*/
@@ -529,7 +529,7 @@ static void bus_subscribe_continuation (flux_future_t *f, void *arg)
529529
sdbus_recover (ctx, error.text);
530530
}
531531

532-
/* Connect completed. Initiate asynchonous bus subscribe.
532+
/* Connect completed. Initiate asynchronous bus subscribe.
533533
*/
534534
static void connect_continuation (flux_future_t *f, void *arg)
535535
{

0 commit comments

Comments
 (0)