Skip to content

Commit d0be216

Browse files
committed
test debugging
1 parent bf0fd98 commit d0be216

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/snapshot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
# Unique group name per workflow-branch/tag combo
1111
concurrency:
12-
group: ${{ github.workflow }}-${{ github.ref }}
12+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1313
cancel-in-progress: true
1414

1515
jobs:

tests/specs/cache/CacheFactoryTest.cfc

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
}
1111

1212
function afterTests(){
13-
cacheFactory.shutdown();
13+
try{
14+
cacheFactory.shutdown();
15+
} catch( any e ){
16+
console( "Error shutting down cache factory #e.detail# #e.message#" );
17+
}
1418
}
1519

1620
function testGetConfig(){

0 commit comments

Comments
 (0)