Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.0.1 (2020-01-07)
## 1.0.1 (2020-01-06)
- Added support for setting `x-ms-client-request-id`, `x-ms-correlation-request-id` and `correlation-context` http header values.
- Fixed `UserAgent` unknown name and unknown version bug.
- Fixed `connectionString()`, it throws `IllegalArgumentException` error when `connectionString` is an empty string,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
* @see ConfigurationAsyncClient
* @see ConfigurationClient
*/
@ServiceClientBuilder(serviceClients = ConfigurationClient.class)
@ServiceClientBuilder(serviceClients = {ConfigurationAsyncClient.class, ConfigurationClient.class})
public final class ConfigurationClientBuilder {

// This header tells the server to return the request id in the HTTP response. Useful for correlation with what
Expand Down