mbande
mbande
I've added `BulkSerializerMixin` to a view set (and set `list_serializer_class` to `BulkListSerializer`), trying to PATCH a single object (which should not touch bulk operations at all), raises this error: `AttributeError:...
Django convert's field types automatically as much as possible. e.g. '111' to 111 when the field is integer this PR would enable bulk updates to use that mechanism
fix for #39 and #52
Please paste some **screenshots** with the **developer tool** open if you report a bug.
looking deeper in my another issue #147 , i found an interesting thing: ``` "User-Agent":"Python-urllib/3.4" ``` who wants to search google with this use agent ???
searching google via phantomjs, i faced this error: ``` Exception in thread [google]SelScrape: Traceback (most recent call last): File "/usr/local/lib/python3.4/dist-packages/GoogleScraper/selenium_mode.py", line 498, in wait_until_serp_loaded until(EC.text_to_be_present_in_element((By.CSS_SELECTOR, selector), str(self.page_number))) File "/usr/local/lib/python3.4/dist-packages/selenium/webdriver/support/wait.py", line...
Using previous version, the following config works fine: ```json { "serializer": "json", "topology_specs": "topologies/", "envs": { "prod": { "user": "", "nimbus": "localhost", "workers": ["localhost"], "use_virtualenv": true, "install_virtualenv": false, "use_ssh_for_nimbus": false,...
in my project, I need to call some ```sparse``` commands inside bolts, e.g. get some topology stats via ```sparse stats```. but they all should run within project dir to find...
i've configured logging as this in config.json: ``` "log": { "path": "/var/log/storm", "file": "pystorm_{topology_name}_{component_name}_{task_id}_{pid}.log", "max_bytes": 1000000, "backup_count": 10, "level": "info" }, ``` the log files are created for each component/task/pid....