Ian Huang
Ian Huang
@marcorichetta Here is my SCALABLE workaround: ```python from drf_yasg.generators import OpenAPISchemaGenerator from drf_yasg import openapi class ModifiedSchemaGenerator(OpenAPISchemaGenerator): def get_schema(self, request=None, public=False): schema = super().get_schema(request, public) schema.schemes = ["http", "https"] return...
Well v5 is expected to be launched in Q2, but eventually it will be updated (hopefully), depending how busy are the maintainers. What about you making a PR for that...
@samedii I don't see the confusion you have with the `__call__`, that is the function that gets executed when you call it, and type hints does its work if you...
@samedii well, it's Python, you can do it in N ways lol, `__call__` to actually call it makes sense to me, and I don't think the `filter` thing is needed...
`skinIndex` might get deleted since MATCH-V4 doesn't have it, this issue will be more suited with a [DOC] prefix instead of a [BUG] prefix since it is working just not...
Any news on Vue 3 Support ? I'm migrating some of the live apps from Vue 2 to Vue 3
@mazipan I've made an alternative package of `vue-script2` with Vue 3 and Typescript support called `vue-scriptx` Npm: https://www.npmjs.com/package/vue-scriptx Repo: https://github.com/paaksing/vue-scriptx It is still not production tested, would need some help...
> > I may prefer to create seperate repo to support Vue 3, since it's hard for me to maintain 2 different version of code. > > > > I...
Here is my 2 cent, I am doing 80k request from an API that returns the same header every request, and 0.001% of them will fail with `ClientPayloadError Response payload...
Tried running it on Digital Ocean, but the same issue as well, looks like we can only use it on our own machine at home where the websocket connection is...