zloydead
zloydead
have any example how to store credentials with mongoengine?
project is dead?
```cmake -DPOSTGRESQL_LIBPGPORT=/usr/pgsql-10/lib/libpgport.a -DPOSTGRESQL_LIBRARY=/usr/pgsql-10/lib/libpq.so -DPOSTGRESQL_INCLUDE_DIR=/usr/pgsql-10/include/server -DPQ_LIBRARY=/usr/pgsql-10/lib/libpq.a -DCMAKE_BUILD_TYPE=Release .. -- Found OpenSSL: /usr/lib64/libssl.so;/usr/lib64/libcrypto.so (found version "1.0.2k") -- Use shipped libmachinarium: /root/rpmbuild/BUILD/odyssey-1.1/third_party/machinarium -- Use shipped libkiwi: /root/rpmbuild/BUILD/odyssey-1.1/third_party/kiwi -- -- Odyssey (version: unknown release)...
in other spec ``` /root/rpmbuild/BUILD/odyssey-1.1/odyssey/sources/scram.c: In function ‘od_scram_parse_verifier’: /root/rpmbuild/BUILD/odyssey-1.1/odyssey/sources/scram.c:68:2: error: too many arguments to function ‘pg_b64_decode’ int salt_len = od_b64_decode(salt_raw, salt_raw_len, salt, salt_dst_len); ^ In file included from /root/rpmbuild/BUILD/odyssey-1.1/odyssey/sources/postgres.h:27:0, from...
@x4m ive tryed PG10|11|12, same effect
in `__init__` of Client can see defaults ``` def __init__( self, host='127.0.0.1', port=4001, ... ``` Why it here? If i need service discovery this code would be ignored, and will...
i see dns resolver problems with VPN
okay! I have correct resolve my SRV record in Python: ``` srv_domain='_etcd-client._tcp.my_sub.my_company.my_zone' q = dns.resolver.query(srv_domain, 'SRV') for h in q: print(h.target.to_text(omit_final_dot=True), h.port) 0etcd0002.e.my_co.my_z 2379 0etcd0003.e.my_co.my_z 2379 1etcd0002.e.my_co.my_z 2379 ```` and...