File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
- name : IntegrationTest
1
+ name : Test
2
2
3
3
on :
4
4
pull_request :
5
5
branches : [master]
6
6
7
7
jobs :
8
- IntegrationTest :
9
- name : Integration Tests
8
+ Test :
9
+ name : Tests
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout repository
Original file line number Diff line number Diff line change @@ -725,7 +725,7 @@ class Cos {
725
725
}
726
726
727
727
async remove ( inputs = { } ) {
728
- console . log ( `Removing bucket from ${ this . region } ` ) ;
728
+ console . log ( `Removing bucket ${ inputs . bucket } ` ) ;
729
729
730
730
let detail ;
731
731
try {
@@ -751,6 +751,7 @@ class Cos {
751
751
Region : this . region ,
752
752
Bucket : inputs . bucket ,
753
753
} ) ;
754
+ console . log ( `Remove bucket ${ inputs . bucket } success` ) ;
754
755
} catch ( e ) {
755
756
// why do this judgement again
756
757
// because when requesting to delete, bucket may be deleted even though it exist before.
You can’t perform that action at this time.
0 commit comments