Deep Aerial
Deep Aerial
Is this issue is still active? I found the same problem on macOS 11.6 Big Sur with Python 3.9 and poetry version 1.1.12: ```shell $ poetry env remove .venv /bin/sh:...
@j5awry I'm sorry. I made a typo. It's 0.13.0. I've updated issue.
For simpler bug reproduction we can use this code: ```python from flask_restplus import Namespace, Resource ping_namespace = Namespace( '/ping/', description='Endpoint for checking service availability.') @ping_namespace.route('') class PingAPI(Resource): ''' Ping endpoint....
Did you tested this on 0.13.0 version? I've installed Flask-RESTPlus using pipenv and it automatically fetched latest version: ```shell $ pipenv install flask-restplus
Here is the part of code where I add namespaces: ```python def register_blueprints(app): ''' Register blueprints for app. ''' blueprint = Blueprint('api', __name__, url_prefix='/api') api = Api(blueprint, title=app.config.app_name, version=app.config.app_version, description=app.config.app_descr)...
@j5awry I've tried to copy and run example you've mentioned earlier and it works ok. But my code don't work with current version
@SteadBytes I've completely removed virtual environment and installed project again. Unfortuanatelly, nothing changed. Here is [repo](https://github.com/xbound/scrapy-api). Installed version from `Pipfile.lock`: ```json "flask-restplus": { "hashes": [ "sha256:a15d251923a8feb09a5d805c2f4d188555910a42c64d58f7dd281b8cac095f1b", "sha256:a66e442d0bca08f389fc3d07b4d808fc89961285d12fb8013f7cf15516fa9f5c" ], "index": "pypi",...
Hey @hozan23 just checked again my code on `deta-python` version `1.1.0` and I did not manage to reproduce error again.
No longer experiencing bug on version `15.0.0`. Closing issue.
Here is header I get from Flask-SocketIO server, as you said there is no `Content-length` header present in handshake: ``` HTTP/1.1 200 OK Access-Control-Allow-Credentials: true Access-Control-Allow-Origin: * Connection: keep-alive Content-Type:...