Bogdan Petrea

Results 26 comments of Bogdan Petrea

Combine this with the automatic casting of the timeout to int, and you'll have any timeout between 0 and 1 last indefinitely as well. Wasted a couple of hours because...

Hi @IvanMalison, thanks for the bug report. Indeed, there should be some useful output for every (startup) fail. Feel free to post other usecases with silent failures, links to code...

I think I'm having the same issue, so I decided to strip down my test to a basic email sending and ran it individually: ```python def test_reset_password(mailoutbox, db, settings): text_message...

I forgot to mention there are some tests, in the same project, where the `mailoutbox` fixture seems to work, so I tried to spot any difference between those tests and...

@jstray's workaround doesn't work for me with Django 1.11.

I think at this point you should search for alternative solutions. Introducing django-polymorphic as a dependency to your project is almost guaranteed to cause pain. This (and other breaking bugs)...

I think it's because `meta` fields are silently expected to be `dicts`, but they are actually using `JSONField`, so they can also contain lists, strings, numbers and what else is...

This is indeed an old and weird part of the API. You can view the code [here](https://github.com/silverapp/silver/blob/d9c2fabea90778250ba6e3be688805549d944def/silver/api/views/documents_views.py#L177) and indeed only PUT is allowed in code. I think the logic behind...

Hi @Nielssie , The `amount` * `currency` is the base price for the plan `interval` * `interval_count`. Something similar is stated in the `help_text` of the field. If that is...

Seems to be a bug in [_get_proration_status_and_percent()](https://github.com/silverapp/silver/blob/1fea7bd851abb40d40ef43eda97ae89a04fe6c1c/silver/models/subscriptions.py#L949). I've opened an issue here https://github.com/silverapp/silver/issues/638.