We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf0fd98 commit d0be216Copy full SHA for d0be216
.github/workflows/snapshot.yml
@@ -9,7 +9,7 @@ on:
9
10
# Unique group name per workflow-branch/tag combo
11
concurrency:
12
- group: ${{ github.workflow }}-${{ github.ref }}
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
13
cancel-in-progress: true
14
15
jobs:
tests/specs/cache/CacheFactoryTest.cfc
@@ -10,7 +10,11 @@
}
function afterTests(){
- cacheFactory.shutdown();
+ try{
+ cacheFactory.shutdown();
+ } catch( any e ){
16
+ console( "Error shutting down cache factory #e.detail# #e.message#" );
17
+ }
18
19
20
function testGetConfig(){
0 commit comments