Eric Wolz

Results 40 comments of Eric Wolz

Correct. I told them that. You can ignore that issue. The only issue is the first_destination_buffer span.

look at "job: crosscompile_mips32" in https://github.com/Azure/azure-iot-sdk-c/blob/main/build/.vsts-ci.yml

I don't see the documentation updates.

Please verify that the RaspberryPi docker build still works

You can get more detail logs by enabling the log trace option. ``` bool traceOn = true; Prov_Device_LL_SetOption(user_ctx.handle, PROV_OPTION_LOG_TRACE, &traceOn); ```

401 is an auth error. The DPS logs shows the error is because of this: `$X.509 client certificate common name and RegistrationId should match.`

The registration ID can be set by this SDK API call. Prov_Device_SetOption(prov_device_handle, PROV_REGISTRATION_ID, "[REGISTRATION ID]"); Additionally, you can request customer support assistance by creating a "New Support Request" in the...

> Has something changed in DPS recently? I don't know. You would need to create a Support Request for the DPS service.

> Do RSA-based certificates work Yes You can try EC. Many TLS stacks are sensitive to cert size (usually 4k) and your RSA can exceed this. You need to validate...