Skip to content
This repository was archived by the owner on Aug 12, 2022. It is now read-only.

Commit 7b58001

Browse files
get log
1 parent 68e73f0 commit 7b58001

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ jobs:
4747
- popd
4848
script:
4949
- pushd test
50-
- ./test_all.sh
50+
- ./test_all.sh & > /dev/null
5151
- popd
52+
- docker logs -f ADCAAS
5253
- stage: publish-image-and-docs
5354
language: python
5455
sudo: required

app/waf/src/services/bigip.service.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,12 @@ export class BigIpManager {
375375
private async mustBeReachable(): Promise<void> {
376376
return this.reachable()
377377
.then(b => {
378-
if (!b) throw new Error();
378+
if (!b) {
379+
this.logger.info('zhaoqin in mustBeReachable b is false');
380+
throw new Error();
381+
} else {
382+
this.logger.info('zhaoqin in mustBeReachable b is true');
383+
}
379384
})
380385
.catch(() => {
381386
let msg =

0 commit comments

Comments
 (0)