Skip to content
This repository was archived by the owner on Aug 4, 2022. It is now read-only.

Commit 9d9480f

Browse files
committed
added redis-server to services in travis.yml
1 parent 923cc98 commit 9d9480f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ install:
1717
- sudo rm -rf pulsar
1818
- python setup.py install
1919
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
20+
21+
services:
22+
- redis-server
23+
2024
script:
2125
- pep8 stdnet --exclude stdnet/apps/searchengine/processors
2226
- sudo rm -rf stdnet

CHANGELOG.rst

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Ver. 0.9.0 - Development
77
* Added the :meth:`odm.Manager.save` as shortcut for immediately committing
88
changes to a model.
99
* Bug fix in model registration.
10+
* Bug fixes when primary key is not named ``id``.
1011
* **554 regression tests** with **93%** coverage.
1112

1213
Ver. 0.8.2 - 2013 July 4

stdnet/backends/redisb/client/async.py

-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
db = getdb('redis://127.0.0.1:6378?password=bla&timeout=0')
1313
1414
'''
15-
from pulsar import async
1615
from pulsar.apps import redis
1716
from pulsar.apps.redis.client import BasePipeline
1817

@@ -38,7 +37,6 @@ def prefixed(self, prefix):
3837
def pipeline(self, transaction=True, shard_hint=None):
3938
return Pipeline(self, self.response_callbacks, transaction, shard_hint)
4039

41-
@async()
4240
def execute_script(self, name, keys, *args, **options):
4341
'''Execute a script.
4442

0 commit comments

Comments
 (0)