Skip to content
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

YARN-11055. Add missing newline in cgroups-operations.c #3851

Merged
merged 1 commit into from
Jan 17, 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
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ int update_cgroups_parameters(

if (!full_path) {
fprintf(ERRORFILE,
"Failed to get cgroups path to write, it should be a configuration issue");
"Failed to get cgroups path to write, it should be a configuration issue\n");
failure = 1;
goto cleanup;
}
Expand All @@ -127,7 +127,7 @@ int update_cgroups_parameters(
// Make sure file exists
struct stat sb;
if (stat(full_path, &sb) != 0) {
fprintf(ERRORFILE, "CGroups: Could not find file to write, %s", full_path);
fprintf(ERRORFILE, "CGroups: Could not find file to write, %s\n", full_path);
failure = 1;
goto cleanup;
}
Expand All @@ -139,18 +139,18 @@ int update_cgroups_parameters(
FILE *f;
f = fopen(full_path, "a");
if (!f) {
fprintf(ERRORFILE, "CGroups: Failed to open cgroups file, %s", full_path);
fprintf(ERRORFILE, "CGroups: Failed to open cgroups file, %s\n", full_path);
failure = 1;
goto cleanup;
}
if (fprintf(f, "%s", value) < 0) {
fprintf(ERRORFILE, "CGroups: Failed to write cgroups file, %s", full_path);
fprintf(ERRORFILE, "CGroups: Failed to write cgroups file, %s\n", full_path);
fclose(f);
failure = 1;
goto cleanup;
}
if (fclose(f) != 0) {
fprintf(ERRORFILE, "CGroups: Failed to close cgroups file, %s", full_path);
fprintf(ERRORFILE, "CGroups: Failed to close cgroups file, %s\n", full_path);
failure = 1;
goto cleanup;
}
Expand Down