You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting the ANYVAR_SQL_STORE_FLUSH_ON_BATCHCTX_EXIT environment variable to false, no or 0 should cause the VCF annotation endpoint to return immediately instead of waiting for database updates to complete. Setting the environment variable has no effect.
The problem is that the environment variable value is passed to bool(), which converts to a boolean based on the whether the string is empty or not.
The text was updated successfully, but these errors were encountered:
Setting the
ANYVAR_SQL_STORE_FLUSH_ON_BATCHCTX_EXIT
environment variable tofalse
,no
or0
should cause the VCF annotation endpoint to return immediately instead of waiting for database updates to complete. Setting the environment variable has no effect.The problem is that the environment variable value is passed to
bool()
, which converts to a boolean based on the whether the string is empty or not.The text was updated successfully, but these errors were encountered: