Naymul Islam

Results 62 comments of Naymul Islam

@Side514 Hey can I work on this?

I think you are trying to run the default environment in `AirSim` using `Unreal Engine 4.27` and `AirSim 1.8.0.` However, you are encountering an error stating that the `AirSim `plugin...

> Addressing #3370: Updated configuration file; testing in progress. Open to feedback and suggestions! Don't forget to update the documentation also :)

Hey @malee1382, Try the following: 1. Uninstall the current version of the pydantic: `pip uninstall -y pydantic` 2. Install the required version of pydantic: `pip install pydantic==1.10.11` let me know...

Hey @joedborg, Did you try this code: `api.connect_get_namespaced_pod_exec( "hello-world", "default", container="hello-world", command=["sh", "-c", "echo 'hello world'"], stderr=False, stdin=False, stdout=True, tty=False, upgrade=True, # Add this line )` Let me know!! :)

> **What happened (please include outputs or screenshots)**: > > Code: > > ``` > from kubernetes import client, config > from kubernetes.stream import stream > > config.load_incluster_config() > api...

Hey @adi-epshtain Please check your network connection and upgarde the `urllib3` module, did you done that?

> I like the basic proposed solution with the inner function. This is quite elegant. A small addition from my side: could you add some unit tests as well? The...

> I think the pr generally looks good, thanks for the contribution! > > But I still think we can get away with just having a fallback value. The way...

> You might be wondering: If you leave fallback_value undefined and turn off error when undefined, it might appear the code is just returning nothing. But it will actually return...