Auto-Submit | +1 |
Commit-Queue | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
CL is failing presubmit, please fix and retry submit
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
nlyteAssetMap.Store(row.Tag.StringVal, struct{}{})
Do we need to check if row.Tag is a non null value?
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
CL is failing presubmit, please fix and retry submit
I'm not sure the failure is to do with my code directly; seems the presubmit job is failing to load some expected modules?
Failed to call ['go', 'mod', 'tidy'], return code 1:
None
I can try running that locally and see what happens
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Warren WhitmanCL is failing presubmit, please fix and retry submit
I'm not sure the failure is to do with my code directly; seems the presubmit job is failing to load some expected modules?
Failed to call ['go', 'mod', 'tidy'], return code 1:
NoneI can try running that locally and see what happens
Yeah, local attempt didn't change anything, and presubmit worked just now. Odd.
nlyteAssetMap.Store(row.Tag.StringVal, struct{}{})
Do we need to check if row.Tag is a non null value?
If Tag is NULL, making the proto fails, so we would follow the error path.
Even for code that attempts to access a NULL, the given value is an empty type, so an empty string in this case; it won't panic.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Warren WhitmanCL is failing presubmit, please fix and retry submit
Warren WhitmanI'm not sure the failure is to do with my code directly; seems the presubmit job is failing to load some expected modules?
Failed to call ['go', 'mod', 'tidy'], return code 1:
NoneI can try running that locally and see what happens
Yeah, local attempt didn't change anything, and presubmit worked just now. Odd.
Ack
nlyteAssetMap.Store(row.Tag.StringVal, struct{}{})
Warren WhitmanDo we need to check if row.Tag is a non null value?
If Tag is NULL, making the proto fails, so we would follow the error path.
Even for code that attempts to access a NULL, the given value is an empty type, so an empty string in this case; it won't panic.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |