Maxim Martynov

Results 155 comments of Maxim Martynov

I've already set `repartitionByPartition=false` to avoid repartition on the side of connector. In Spark UI all executors (40 in my case) got the same number of rows, so there was...

Current solution is: ```python from authlib.jose import JWTClaims, jwt from authlib.jose.errors import BadSignatureError, ExpiredTokenError try: jwt.decode(token, key="") except BadSignatureError as e: token_decoded = e.result.payload claims = JWTClaims( header=token_decoded, payload=token_decoded, )...

Personally, I prefer to use beta version instead of some unmaintained project.

For me, this doesn't work, `CODECOV_TOKEN` was set as Dependabot secret for months: ![Image](https://github.com/user-attachments/assets/b56a4a88-f8cf-4c82-badb-405e677256e8)

You should check logs of `api` container, it is probably failing and restarting over and over.

You can just create client instance, and then pass it to application endpoints using `dependency_overrides`: ```python app = FastAPI() client = ... app.dependency_overrides[MongoClient] = lambda: client ```

That's the point of forbidding the stdlib formatting features? This rule will be either added to ignore immediately, or some users will tend to write their own formatting functions, probably...

I don't see how prohibiting string formatting will improve anything. If someone needs to format string in specific way, they will do it anyway, and just ignore the rule. What's...