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

DAOS-6572 engine: Use CDEBUG to silence shutdown warnings. #4859

Merged
merged 8 commits into from
Mar 9, 2021

Conversation

ashleypittman
Copy link
Contributor

No description provided.

src/container/srv_target.c Outdated Show resolved Hide resolved
@daosbuild1
Copy link
Collaborator

@daosbuild1
Copy link
Collaborator

Test stage Build DEB on Ubuntu 20.04 completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-4859/1/execution/node/390/log

@daosbuild1
Copy link
Collaborator

Test stage Build RPM on CentOS 7 completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-4859/1/execution/node/393/log

Silence errors at shutdown.

Signed-off-by: Ashley Pittman <ashley.m.pittman@intel.com>
@daosbuild1 daosbuild1 dismissed their stale review March 4, 2021 09:15

Updated patch

Copy link
Collaborator

@daosbuild1 daosbuild1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. No errors found by checkpatch.

Parallel-build: true

Signed-off-by: Ashley Pittman <ashley.m.pittman@intel.com>
Copy link
Collaborator

@daosbuild1 daosbuild1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. No errors found by checkpatch.

FYI: Errors found in lines not modified in the patch:

src/tests/ftest/cart/util/cart_logtest.py:373:
(pylint-redefined-outer-name) Redefining name 'pid' from outer scope (line 356)

src/tests/ftest/cart/util/cart_logtest.py:438:
(pylint-chained-comparison) Simplify chained comparison between the operands

@daosbuild1
Copy link
Collaborator

Copy link
Collaborator

@daosbuild1 daosbuild1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style warning(s) for job https://build.hpdd.intel.com/job/daos-stack/job/daos/job/PR-4859/4/
Please review https://wiki.hpdd.intel.com/display/DC/Coding+Rules

FYI: Errors found in lines not modified in the patch:

src/tests/ftest/cart/util/cart_logparse.py:52:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:56:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:131:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:580:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:633:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logtest.py:373:
(pylint-redefined-outer-name) Redefining name 'pid' from outer scope (line 356)

src/tests/ftest/cart/util/cart_logtest.py:439:
(pylint-chained-comparison) Simplify chained comparison between the operands

@@ -417,6 +418,9 @@ def _check_pid_from_log_file(self,
except AttributeError:
pass
if abort_on_warning:
if not server_shutdown and \
line.fac != 'external' and line.function == 'server_fini':
server_shutdown = True
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(pylint-bad-indentation) Bad indentation. Found 24 spaces, expected 20

@daosbuild1
Copy link
Collaborator

Parallel-build: true

Signed-off-by: Ashley Pittman <ashley.m.pittman@intel.com>
@daosbuild1 daosbuild1 dismissed their stale review March 4, 2021 19:38

Updated patch

Copy link
Collaborator

@daosbuild1 daosbuild1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. No errors found by checkpatch.

FYI: Errors found in lines not modified in the patch:

src/tests/ftest/cart/util/cart_logparse.py:52:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:56:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:131:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:580:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:633:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logtest.py:373:
(pylint-redefined-outer-name) Redefining name 'pid' from outer scope (line 356)

src/tests/ftest/cart/util/cart_logtest.py:439:
(pylint-chained-comparison) Simplify chained comparison between the operands

Copy link
Collaborator

@daosbuild1 daosbuild1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. No errors found by checkpatch.

FYI: Errors found in lines not modified in the patch:

src/tests/ftest/cart/util/cart_logparse.py:52:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:56:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:131:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:580:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:633:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

@daosbuild1
Copy link
Collaborator

Test stage Scan CentOS 7 RPMs completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-4859/6/execution/node/1207/log

@daosbuild1
Copy link
Collaborator

Test stage Functional_Hardware_Small completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-4859/6/execution/node/1233/log

@daosbuild1
Copy link
Collaborator

Test stage Functional_Hardware_Medium completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-4859/6/execution/node/1325/log

@daosbuild1
Copy link
Collaborator

Test stage Functional_Hardware_Large completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-4859/6/execution/node/1397/log

Copy link
Collaborator

@daosbuild1 daosbuild1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. No errors found by checkpatch.

FYI: Errors found in lines not modified in the patch:

src/tests/ftest/cart/util/cart_logparse.py:52:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:56:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:131:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:580:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:633:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

@daosbuild1
Copy link
Collaborator

Test stage Scan CentOS 7 RPMs completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-4859/7/execution/node/1142/log

Copy link
Collaborator

@daosbuild1 daosbuild1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. No errors found by checkpatch.

FYI: Errors found in lines not modified in the patch:

src/tests/ftest/cart/util/cart_logparse.py:52:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:56:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:131:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:580:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:633:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

Copy link
Collaborator

@daosbuild1 daosbuild1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. No errors found by checkpatch.

FYI: Errors found in lines not modified in the patch:

src/tests/ftest/cart/util/cart_logparse.py:52:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:56:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:131:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:580:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:633:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

Signed-off-by: Ashley Pittman <ashley.m.pittman@intel.com>
Copy link
Collaborator

@daosbuild1 daosbuild1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. No errors found by checkpatch.

FYI: Errors found in lines not modified in the patch:

src/tests/ftest/cart/util/cart_logparse.py:52:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:56:
(pylint-unnecessary-pass) Unnecessary pass statement

src/tests/ftest/cart/util/cart_logparse.py:131:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:580:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

src/tests/ftest/cart/util/cart_logparse.py:633:
(pylint-raise-missing-from) Consider explicitly re-raising using the 'from' keyword

@ashleypittman ashleypittman requested a review from a team March 9, 2021 07:54
@jolivier23 jolivier23 merged commit bf542a7 into master Mar 9, 2021
@jolivier23 jolivier23 deleted the cdebug-warnings branch March 9, 2021 23:57
sylviachanoiyee pushed a commit that referenced this pull request Mar 26, 2021
Silence errors at shutdown.

Signed-off-by: Ashley Pittman <ashley.m.pittman@intel.com>
sylviachanoiyee pushed a commit that referenced this pull request Mar 26, 2021
Silence errors at shutdown.

Signed-off-by: Ashley Pittman <ashley.m.pittman@intel.com>
sylviachanoiyee pushed a commit that referenced this pull request Apr 2, 2021
…5199)

Silence errors at shutdown.

Signed-off-by: Ashley Pittman <ashley.m.pittman@intel.com>
@ashleypittman ashleypittman mentioned this pull request Apr 28, 2021
@ashleypittman ashleypittman mentioned this pull request May 20, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

5 participants