File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
aws-runtime/aws-config/common/src/aws/sdk/kotlin/runtime/config/profile Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ package aws.sdk.kotlin.runtime.config.profile
88import aws.sdk.kotlin.runtime.InternalSdkApi
99import aws.sdk.kotlin.runtime.config.AwsSdkSetting
1010import aws.smithy.kotlin.runtime.config.resolve
11- import aws.smithy.kotlin.runtime.io.internal.SdkDispatchers
1211import aws.smithy.kotlin.runtime.telemetry.logging.logger
1312import aws.smithy.kotlin.runtime.telemetry.trace.withSpan
1413import aws.smithy.kotlin.runtime.util.OsFamily
1514import aws.smithy.kotlin.runtime.util.PlatformProvider
15+ import kotlinx.coroutines.Dispatchers
16+ import kotlinx.coroutines.IO
1617import kotlinx.coroutines.withContext
17- import kotlin.coroutines.coroutineContext
1818
1919/* *
2020 * Load the shared AWS configuration specified in local configuration files.
@@ -38,7 +38,7 @@ public suspend fun loadAwsSharedConfig(
3838 val logger = coroutineContext.logger(" AwsConfigParser" )
3939
4040 // merged AWS configuration based on optional configuration and credential file contents
41- withContext(SdkDispatchers .IO ) {
41+ withContext(Dispatchers .IO ) {
4242 mergeFiles(
4343 parse(
4444 logger,
You can’t perform that action at this time.
0 commit comments