We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Customers are seeing logs dropped from this line:
coder/enterprise/tailnet/pgcoord.go
Line 190 in 83e1349
like
2023-12-19 02:01:06.578 [crit] coderd.pgcoord: failed to convert node coordinator_id=b830df01-161b-49ca-9003-9b4b23d0e50f node=<nil> error="missing/incorrect type prefix np"
We are missing a check for the node being missing (allowed by this function) before trying to convert it.
Since the correct behavior is to return nil (and NOT drop a log), the only problem is the log itself.
The text was updated successfully, but these errors were encountered:
fix: avoid converting nil node
f2606a7
fixes: #11276
spikecurtis
Successfully merging a pull request may close this issue.
Customers are seeing logs dropped from this line:
coder/enterprise/tailnet/pgcoord.go
Line 190 in 83e1349
like
We are missing a check for the node being missing (allowed by this function) before trying to convert it.
Since the correct behavior is to return nil (and NOT drop a log), the only problem is the log itself.
The text was updated successfully, but these errors were encountered: