Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit777e8c0

Browse files
committed
Remove bogus semicolons in recoveryPausesHere.
Without this, the startup process goes into a tight loop, consuming100% of one CPU and failing to respond to interrupts.
1 parentf94c6f9 commit777e8c0

File tree

1 file changed

+2
-2
lines changed
  • src/backend/access/transam

1 file changed

+2
-2
lines changed

‎src/backend/access/transam/xlog.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5687,11 +5687,11 @@ recoveryStopsHere(XLogRecord *record, bool *includeThis)
56875687
staticvoid
56885688
recoveryPausesHere(void)
56895689
{
5690-
while (RecoveryIsPaused());
5690+
while (RecoveryIsPaused())
56915691
{
56925692
pg_usleep(1000000L);/* 1000 ms */
56935693
HandleStartupProcInterrupts();
5694-
};
5694+
}
56955695
}
56965696

56975697
staticbool

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp