echo "POST INSTALL OSM-COMMON"
echo "Installing python dependencies via pip..."
-pip3 install --upgrade aiokafka
+pip3 install --upgrade aiokafka==0.6.0
pip3 install --upgrade pymongo
pip3 install --upgrade pyyaml==5.*
pip3 install pycrypto # added dependency python3-crypto seems not working
# B or C
A.cont=B&A.cont=C; A.cont=B,C >> A: {$in: [B, C]}
A.ncont=B >> A: {$nin: B} # must not contain key A or if present not equal to B or if a list,
- # it must not not contain B
+ # it must not contain B
A.ncont=B,C; A.ncont=B&A.ncont=C >> A: {$nin: [B,C]} # must not contain key A or if present not equal
# neither B nor C; or if a list, it must not contain neither B nor C
A.ne=B&A.ne=C; A.ne=B,C >> A: {$nin: [B, C]}