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
It can be challenging to debug issues caused by an incorrectly formatted property_map or missing property keys when uploading data. Currently, adding data will silently "fail" -- no indication is provided that the properties were not actually added.
This is due to the continue statement here. A better alternative may be to change this line to generate an error message that counts how many configurations had missing keys, which is then logged at the end of the loop. This would make it much easier to recognize when there may be something wrong during data upload.
The text was updated successfully, but these errors were encountered:
It can be challenging to debug issues caused by an incorrectly formatted property_map or missing property keys when uploading data. Currently, adding data will silently "fail" -- no indication is provided that the properties were not actually added.
This is due to the continue statement here. A better alternative may be to change this line to generate an error message that counts how many configurations had missing keys, which is then logged at the end of the loop. This would make it much easier to recognize when there may be something wrong during data upload.
The text was updated successfully, but these errors were encountered: