You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deployment Environment:
Ubuntu 22.04 LTS EdgeX Version [REQUIRED]:
3.0.0-dev.114 Anything else relevant?
it's possible that the error is being caused by the item variable in the for loop. if item is a nil pointer, then attempting to access its Kind() method would result in a runtime error. To fix this issue, we can add a check to see if item is not nil before calling Kind() on it.
The text was updated successfully, but these errors were encountered:
🐞 Bug Report
Affected Services [REQUIRED]
The issue is located in:Is this a regression?
Yes, the previous version in which this bug was not present was:edgexfoundry_3.0.0-dev.108
Description and Minimal Reproduction [REQUIRED]
There is a runtime error caused by a nil pointer dereference or invalid memory address access while setting certain environment variables:
🔥 Exception or Error
🌍 Your Environment
Deployment Environment:
Ubuntu 22.04 LTS
EdgeX Version [REQUIRED]:
3.0.0-dev.114
Anything else relevant?
it's possible that the error is being caused by the
item
variable in the for loop. ifitem
is a nil pointer, then attempting to access its Kind() method would result in a runtime error. To fix this issue, we can add a check to see if item is not nil before callingKind()
on it.The text was updated successfully, but these errors were encountered: