Skip to content

Commit

Permalink
Update LICENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
mstuart committed May 25, 2016
1 parent c97d612 commit 3350364
Showing 1 changed file with 0 additions and 51 deletions.
51 changes: 0 additions & 51 deletions LICENSE.txt
Expand Up @@ -12,54 +12,3 @@
│ See the License for the specific language governing permissions and │
│ limitations under the License. │
\*───────────────────────────────────────────────────────────────────────────*/



#!/bin/bash

dates='2016-05-14 2016-05-15';
biz_pools='hermesnodeweb paymentapiplatformserv xoonboardingnodeweb';
flow_pools='hermesnodeweb xoonboardingnodeweb xorouternodeweb nvppaymentserv merchantpaymentweb'

for date in $dates; do

for pool in $biz_pools; do

echo "Checking $date $pool BIZ"

query="
select day, pool, count(1) as total
from cal_biz_logs
where pool = '$pool'
and day = '$date'
group by day, pool;
";

echo;
echo $query;
echo;

./syncquery.sh "$query";

done;

for pool in $flow_pools; do

echo "Checking $date $pool FLOW"

query="
select day, pool, count(1) as total
from cal_flow_logs
where pool = '$pool'
and day = '$date'
group by day, pool;
";

echo;
echo $query;
echo;

./syncquery.sh "$query";

done;
done;

0 comments on commit 3350364

Please sign in to comment.