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

Remove check for resilience that caused a segfault #1562

Merged
merged 1 commit into from
Oct 21, 2022
Merged
Show file tree
Hide file tree
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: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ PMIx version that meets the PMIx cross-version requirements (i.e., a
minimum of PMIx v2.5).

Detailed changes:

PR #1562: Remove check for resilience that caused a segfault
PR #1557: Update NEWS
PR #1556: Multiple commits
- Support query of pset membership
Expand Down
2 changes: 0 additions & 2 deletions src/tools/prte_info/param.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,6 @@ void prte_info_do_config(bool want_all)
char *prun_prefix_by_default;
char *symbol_visibility;
char *manpages;
char *resilience;

/* setup the strings that don't require allocations*/
debug = PRTE_ENABLE_DEBUG ? "yes" : "no";
Expand Down Expand Up @@ -414,5 +413,4 @@ void prte_info_do_config(bool want_all)
prte_info_out("prun default --prefix", "prun:prefix_by_default", prun_prefix_by_default);
prte_info_out("Symbol vis. support", "options:visibility", symbol_visibility);
prte_info_out("Manpages built", "options:man-pages", manpages);
prte_info_out("Resilience support", "options:ft", resilience);
}