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
We encountered one potential SDK breaking change in this spec change.
It is about client factory CTOR. This PR introduced a new client into the service, and this new client has a new client level parameter compared with previous clients.
Our current logic for client factory is to gather all client level parameters and put them into the client factory CTOR, thus cause the breaking change of adding a new required parameter: subscriptionID.
My proposal is only gathering client parameters that is used by all clients, and put the extra required parameters into to ClientFactory.NewXXXClient method.
We encountered one potential SDK breaking change in this spec change.
It is about client factory CTOR. This PR introduced a new client into the service, and this new client has a new client level parameter compared with previous clients.
Our current logic for client factory is to gather all client level parameters and put them into the client factory CTOR, thus cause the breaking change of adding a new required parameter:
subscriptionID
.My proposal is only gathering client parameters that is used by all clients, and put the extra required parameters into to
ClientFactory.NewXXXClient
method.The text was updated successfully, but these errors were encountered: