We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9046dd5 commit 89917f8Copy full SHA for 89917f8
builder.json
@@ -26,5 +26,8 @@
26
}
27
28
29
- }
+ },
30
+ "test_steps": [
31
+ "test"
32
+ ]
33
source/io/Bootstrap.cpp
@@ -33,7 +33,9 @@ namespace Aws
auto callbackData = static_cast<ClientBootstrapCallbackData *>(userData);
34
35
callbackData->ShutdownPromise.set_value();
36
- callbackData->ShutdownCallback();
+ if (callbackData->ShutdownCallback) {
37
+ callbackData->ShutdownCallback();
38
+ }
39
40
delete callbackData;
41
0 commit comments