Skip to content

Commit 89917f8

Browse files
authored
Re-enable tests in CI (aws#113)
also fix crash
1 parent 9046dd5 commit 89917f8

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

builder.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,8 @@
2626
}
2727
}
2828
}
29-
}
29+
},
30+
"test_steps": [
31+
"test"
32+
]
3033
}

source/io/Bootstrap.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ namespace Aws
3333
auto callbackData = static_cast<ClientBootstrapCallbackData *>(userData);
3434

3535
callbackData->ShutdownPromise.set_value();
36-
callbackData->ShutdownCallback();
36+
if (callbackData->ShutdownCallback) {
37+
callbackData->ShutdownCallback();
38+
}
3739

3840
delete callbackData;
3941
}

0 commit comments

Comments
 (0)