dlmarion commented on issue #188:
URL:
https://github.com/apache/accumulo-testing/issues/188#issuecomment-1016682433
I was able to reproduce my test pretty easily. Two script files and the
driver.
```bash
#! /bin/bash
function do_it {
echo "do A"
}
function undo_it {
echo "undo A"
}
```
```bash
#! /bin/bash
function do_it {
echo "do B"
}
function undo_it {
echo "undo B"
}
```
```bash
#! /bin/bash
for file in $(find scripts -type f | shuf)
do
source "$file"
do_it
sleep 1
undo_it
done
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]