Results 17 issues of Alexey Kolyanov

./catfs /mnt/gsdata /tmp/catfsdata /mnt/data Hangs in foreground, but works (mounted folder exists) Version: downloaded as 0.8.0, reported 0.7.0 (see #12 ) Caching folder from mounted goofys S3 folder. How to...

wget https://github.com/kahing/catfs/releases/download/v0.8.0/catfs chmod a+x ./catfs ./catfs -h > catfs 0.7.0 > Cache Anything FileSystem > ... ls -la catfs > -rwxrwxr-x 1 ubuntu ubuntu 6453456 Jan 9 06:49 catfs Seems...

File `./apns.py`, function `_apns_send`. Result is returned only when batch mode is used. Otherwise returns `None`.

apns

zeep 4.1.0 WSDL: https://opcfoundation.org/XMLDA/1.0/OpcXmlDa1.00.wsdl ```python transport = AsyncTransport(client=httpx_client) client = AsyncClient(WSDL, transport=transport) svc = self.client.create_service(list(client.wsdl.bindings.keys())[0], url) ``` See `zeep/client.py:139`: ```python def create_service(self, binding_name, address): ... return ServiceProxy(self, binding, address=address) ......

See [boto3 docs](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/cognito-idp.html#CognitoIdentityProvider.Client.admin_delete_user): > admin_delete_user(**kwargs) > > Deletes a user as an administrator. Works on any user. Method `admin_delete_user` should accept argument `username`.

Method [`admin_create_user`](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/cognito-idp.html#CognitoIdentityProvider.Client.admin_create_user) from `boto3` accepts `MessageAction` argument which can suppress sending email message with temp password to the user. ... MessageAction='RESEND'|'SUPPRESS', ... Would be useful if added to `warrant`.

I think (IMHO) it would make more sense if relative include searches for the file in the current file's directory rather than current working directory. Use case: when I pass...

Sublime text 4 Build 4106 With Tabright enabled - on any file close/open it breaks last visited tabs navigation by Ctrl-Tab: it browses them from last tab (instead of previous...

This is related to both functions `connect` and `connect_robust`. Being called with parameters `url` and, say, `client_properties` the latter is not used. The problem is in the `make_url()` function: ```...

It i hardcoded to use json for data serialization, but celery might be set up to use other serialization types. With json it is not possible to deserialize `datetime` and...