Thomas Bigot
Thomas Bigot
Basic backtrace: ``` (gdb) bt #0 0x00007fffeb948bc0 in () at /lib64/libssl.so.1.1 #1 0x00007ffff7481c03 in SSL_CTX_new () at /lib64/libssl.so.1.0.0 #2 0x00007ffff6d97ec6 in ossl_connect_step1 () at /lib64/libcurl.so.4 #3 0x00007ffff6d9b648 in ossl_connect_common ()...
I’m running spotify-client_1.0.59.395.ge6ca9946-18 (the latest available). This was working fine until yesterday. According to the backtrace, the issues is in libssl, maybe libssl / spotify compatibility.
Yes you’re right, I’ve pasted the `no version information available` code to be complete, but I know this is normal with spotify-make installation and occurs at each launch, even a...
I’ve installed with leamas spotify-make like this: ```sh ./configure --prefix=${HOME}/_ --user make download && make install && make register ``` I’ll have a look to your link.
Hi Hadrien, and thanks a lot for your reply. For my part, I’ve tested querying directly the database file (in read only mode), and it doesn’t seem to change the...
If I remove the `WAL` mode, I can access the database _via_ sqlite3 tool, even if the database file is not writable. But it’s not possible from Python using taxadb:...
It seems to be caused by ```python return pw.SqliteDatabase(self.get('dbname'), pragmas={'journal_mode': 'wal', 'cache_size': -1 * 64000}) ``` here: https://github.com/HadrienG/taxadb/blob/4484b0415b43f92cec547f0380947506ab3f1ace/taxadb/schema.py#L160 Could there be an option to deactivate wal mode?
It happens to me as well, using `snakemake-executor-slurm`.
Yes, they make this distinction using this formalism: ```py rule some_local_rule: localrule: True input: "some_file.ext" … rule some_dist_rule: input: "some_file_{x}.ext" … ```