We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8a49aac + 63de026 commit 7172acdCopy full SHA for 7172acd
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+## 5.0.1
2
+
3
+### [Changed]
4
5
+* `be4` : WMS harvest scripts only log request when error occure
6
7
## 5.0.0
8
9
### [Changed]
lib/ROK4/BE4/Shell.pm
@@ -599,7 +599,7 @@ Wms2work () {
599
while :
600
do
601
let count=count+1
602
- wget --no-verbose -O $nameImg "$url&BBOX=$1"
+ wget --quiet --no-verbose -O $nameImg "$url&BBOX=$1"
603
604
if [ $? == 0 ] ; then
605
checkWork $nameImg 2>/dev/null
@@ -608,6 +608,7 @@ Wms2work () {
608
fi
609
610
611
+ echo "Cannot download $url&BBOX=$1"
612
echo "Failure $count : wait for $wait_delay s"
613
sleep $wait_delay
614
let wait_delay=wait_delay*2
0 commit comments