From cdb9b14cd36987b7ddc3ba6d8d711ee0ff6340a3 Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Khan Date: Tue, 2 Jul 2024 09:36:49 -0700 Subject: [PATCH] remove default 0 --- .../http/HTTPClientConnectionManagerMetrics.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerMetrics.swift b/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerMetrics.swift index 38760c89..cafcaaa5 100644 --- a/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerMetrics.swift +++ b/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerMetrics.swift @@ -15,9 +15,9 @@ public struct HTTPClientConnectionManagerMetrics { public var leasedConcurrency: Int public init( - availableConcurrency: Int = 0, - pendingConcurrencyAcquires: Int = 0, - leasedConcurrency: Int = 0 + availableConcurrency: Int, + pendingConcurrencyAcquires: Int, + leasedConcurrency: Int ) { self.availableConcurrency = availableConcurrency self.pendingConcurrencyAcquires = pendingConcurrencyAcquires