-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Fix matching logic for logs from namespace when lines = 0 #5660
Conversation
bawjensen
commented
Aug 19, 2023
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | #5658 |
License | MIT |
Doc PR | N/A (?) |
var isMatchingProcess = id === 'all' | ||
|| packet.process.name === id | ||
|| packet.process.pm_id === id | ||
|| packet.process.namespace === id; | ||
if (!isMatchingProcess) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
separating out isMatchingProcess
felt more readable to me - happy to revert back to something like this instead:
if (id !== 'all'
&& packet.process.name != id
&& packet.process.pm_id != id
&& packet.process.namespace != id)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I used the most recently added test/e2e/logs/
case as a template, hoping to use the most modern test patterns
$pm2 start echo.js --namespace e2e-test-log-namespace | ||
|
||
LOG_FILE_BASELINE="${LOG_PATH_PREFIX}/baseline-out.log" | ||
$pm2 logs e2e-test-log-namespace > $LOG_FILE_BASELINE & # backgrounded - will be stopped by `$pm2 delete all` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I haven't seen any e2e (or programmatic tests) for the pm2 logs
command, in order to mimic those. So this is a bit of a shot in the dark, with this approach of backgrounding the process.
078dfaf
to
fd2dc00
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
fixed via [email protected] $ npm install [email protected]
$ pm2 update |