James Lin

Results 34 comments of James Lin

@codingjoe I am in the same boat trying to create tests but cannot get past executing a front end task, I have done the user assignment via `self.client.post(/workflow/mrt/ram_change/changeramsize/{}/perform_approval/{}/assign/')` looks like...

OK, after some digging, I need to supply `_viewflow_activation-started` in the form data along with current date time. `'_viewflow_activation-started': timezone.now().strftime("%Y-%m-%d %H:%M")`

I had the exact error but was caused by date format, I re-arranged the dateformat from 'dd/mm/yyyy' to 'yyyy-mm-dd' has fixed the problem. https://stackoverflow.com/questions/14119133/conversion-failed-when-converting-date-and-or-time-from-character-string-while-i

i have fallen into the same problem as the original poster, I don't want to modify the 3rd party app but would like to add categories relationship to it.

Thanks for fixing it, but I couldn't wait for the fix and went ahead hardcoded the foreign key to my models. So now your test is as good as my...

I am also having this problem, I have followed the [instructions](https://opentelemetry-python.readthedocs.io/en/latest/examples/django/README.html) to setup django side in manage.py ```python #!/usr/bin/env python import os import sys from opentelemetry.instrumentation.django import DjangoInstrumentor def main():...

> @srikanthccv thanks, I am completely new on this topic if I use auto instrumentation, do I still need to add my own tracers in each view? The doc you...

> Hi @pranay01 I am getting this error: ``` WARNING:opentelemetry.exporter.otlp.proto.grpc.exporter:Transient error StatusCode.UNAVAILABLE encountered while exporting metrics, retrying in Nones. ERROR:opentelemetry.sdk.metrics._internal.export:Exception while exporting metrics an integer is required (got type NoneType)...

For the life of me I can't get the app to show up in signoz, it doesn't raise any errors, so I don't know if it's emitting data to it...