Viktor Danyliuk

Results 10 issues of Viktor Danyliuk

model: class Personages(models.Model): name = models.CharField(max_length=200) act_born_id = models.ForeignKey('ActsBorn') act_death_id = models.ForeignKey('ActsDeath', null=True) faker: populator = Faker.getPopulator() populator.addEntity(ActsDeath,30, { 'death_location': lambda x: populator.generator.format('address'), }) populator.addEntity(ActsBorn,30, { 'name': lambda x: populator.generator.format('name'),...

**Actual behavior** Running a build without cache pass successfully. Running with cache has been working for a while but now it fails. Dockerfile looks like this: ``` COPY requirements.txt /dist/...

I have covered an endpoint with a test that counts DB queries and reveled n+1 issue. The n+1 issue is only reproduced in tests so it seems to be related...

I have tried to define following contract: ```toml [[tool.importlinter.contracts]] name = "No project_web imports from alembic migration files" type = "forbidden" source_modules = [ "project_web.migrations.versions" ] forbidden_modules = [ "project_web",...

Hi, I have tried to use `enable_request_id_propagation` with celery but during debugging found this: I have a lot of things bound to my flask app (e.g. flask-sqlalchemy) so in celery,...

# Checklist - [x] I have verified that the issue exists against the `master` branch of Celery. - [ ] This has already been asked to the [discussions forum](https://github.com/celery/celery/discussions) first....

Issue Type: Bug Report

### Description of your changes Trying to add support for bigquery subscriptions. See feature request: https://github.com/crossplane-contrib/provider-gcp/issues/469 Fixes #469 I have: - [x] Read and followed Crossplane's [contribution process]. - [x]...

### What problem are you facing? I want to provision a subscription with bigquery type but it seems to be missing. ### How could Crossplane help solve your problem? Add...

enhancement

Hi, I want to observe errors/requests counts by different status codes. But the only available dimension is `script_name`. Looks like it's missing from being passed to labels at the moment:...

Sometimes GCP responds with html for errors, e.g. 404 when using a wrong topic name. While it's easy to find and fix a typo in a topic name during development,...