From e0aafc128263a2e20199ab694ffee1c33f5cefc5 Mon Sep 17 00:00:00 2001 From: sandeepdhamija Date: Sat, 7 Feb 2026 21:57:35 -0500 Subject: [PATCH] Update wrong data type false can't be assigned to int in java. Updating type to boolean --- sdk/spring/azure-spring-data-cosmos/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/spring/azure-spring-data-cosmos/README.md b/sdk/spring/azure-spring-data-cosmos/README.md index ad965745804a..0f6833f27046 100644 --- a/sdk/spring/azure-spring-data-cosmos/README.md +++ b/sdk/spring/azure-spring-data-cosmos/README.md @@ -289,7 +289,7 @@ to share throughput between containers, you can enable database provisioned thro ```java @Override public CosmosConfig cosmosConfig() { - int autoscale = false; + boolean autoscale = false; int initialRequestUnits = 400; return CosmosConfig.builder() .enableDatabaseThroughput(autoscale, initialRequestUnits)