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
When trying to bootstrap a second SDK client after one has already been bootstrapped, the task succeeds but there is no client generated.
Expected behavior
The second client should be bootstrapped.
Current behavior
The bootstrap task succeeds but does not actually generate a client.
Steps to Reproduce
./gradlew --no-daemon -Paws.kotlin.native=false -Paws.services=lambda :codegen:sdk:bootstrap
# observe lambda client is generated
./gradlew --no-daemon -Paws.kotlin.native=false -Paws.services=ec2 :codegen:sdk:bootstrap
# observe task succeeds, but there is no EC2 client
Possible Solution
The bug is related to Gradle caching the generateSmithyBuild task results. I noticed this in the logs: Task :codegen:sdk:generateSmithyBuild UP-TO-DATE.
Adding a --rerun-tasks flag to the bootstrap command fixes the issue, but this problem should be fixed in the Gradle task itself.
Context
No response
AWS Kotlin SDK version used
1.0.40-SNAPSHOT
Platform (JVM/JS/Native)
JVM
Operating System and version
MacOS
The text was updated successfully, but these errors were encountered:
Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.
Describe the bug
When trying to bootstrap a second SDK client after one has already been bootstrapped, the task succeeds but there is no client generated.
Expected behavior
The second client should be bootstrapped.
Current behavior
The bootstrap task succeeds but does not actually generate a client.
Steps to Reproduce
Possible Solution
The bug is related to Gradle caching the
generateSmithyBuild
task results. I noticed this in the logs:Task :codegen:sdk:generateSmithyBuild UP-TO-DATE
.Adding a
--rerun-tasks
flag to the bootstrap command fixes the issue, but this problem should be fixed in the Gradle task itself.Context
No response
AWS Kotlin SDK version used
1.0.40-SNAPSHOT
Platform (JVM/JS/Native)
JVM
Operating System and version
MacOS
The text was updated successfully, but these errors were encountered: