Luis Saavedra

Results 19 comments of Luis Saavedra

this fail with: ```console django.request:ERROR:: Internal Server Error: /metrics Traceback (most recent call last): File ".../env/lib/python3.7/site-packages/asgiref/sync.py", line 458, in thread_handler raise exc_info[1] File ".../env/lib/python3.7/site-packages/django/core/handlers/exception.py", line 38, in inner response =...

I'm checking this bug and seem to be a problem with delivery the task `task1.si(42)` (only one time and then "disappear"), so the second task never is ready... for example:...

fails due python3.5 support having been removed from setuptools-scm: https://github.com/pypa/setuptools_scm/blob/main/CHANGELOG.rst#v600

rebase master and remove manage.py

> @jkupka > You can use below code, Until docs be updated. > > ``` > from channels.db import database_sync_to_async > > @database_sync_to_async > def get_user(user_id): > try: > return...

mmm... the frame type are bytes or text? because if are bytes the interface must be: ```python # websocketInterface.py file from starlette.websockets import WebSocket class WebSocketInterface(): def __init__(self, websocket: WebSocket):...

I'm testing and with text frame type are ok, but with byte frame type fail on: ```console File ".../envSc/lib/python3.7/site-packages/ocpp/charge_point.py", line 122, in start message = await self._connection.recv() File "./websocketInterface.py", line...

now I have a big doubt... the ocpp1.6 standard are websocket with text frames or binary frames :'(

yes, in the ocpp1.6-j specification (section 4.1.2) say that MUST be UTF-8 characters then the websocket frame type is **text**! thanks!!!