8000 [PBCKP-236]-2, added ssh agent full path to log output by avaness · Pull Request #554 · postgrespro/pg_probackup · GitHub
[go: up one dir, main page]

Skip to content

[PBCKP-236]-2, added ssh agent full path to log output #554

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/utils/remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ bool launch_agent(void)
return false;
} else {
#endif
elog(LOG, "Start SSH client process, pid %d", child_pid);
elog(LOG, "Start SSH client process, pid %d, cmd \"%s\"", child_pid, cmd);
SYS_CHECK(close(infd[1])); /* These are being used by the child */
SYS_CHECK(close(outfd[0]));
SYS_CHECK(close(errfd[1]));
Expand Down
0