<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/rq.git/tests, branch python3.8</title>
<subtitle>github.com: nvie/rq.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/'/>
<entry>
<title>worker.work() should be tested with burst=True</title>
<updated>2020-06-07T11:09:17+00:00</updated>
<author>
<name>Selwin Ong</name>
<email>selwin.ong@gmail.com</email>
</author>
<published>2020-06-07T11:09:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/commit/?id=a1ee46688292617213233786bc44056e1a2b1a76'/>
<id>a1ee46688292617213233786bc44056e1a2b1a76</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Took into account DST when computing localtime zones.  This wasn't ac… (#1258)</title>
<updated>2020-05-24T05:31:27+00:00</updated>
<author>
<name>Evan Ackmann</name>
<email>Evansbee@gmail.com</email>
</author>
<published>2020-05-24T05:31:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/commit/?id=bd0fcc1a07ff513ffa5da44f6583099f6e72aee5'/>
<id>bd0fcc1a07ff513ffa5da44f6583099f6e72aee5</id>
<content type='text'>
* Took into account DST when computing localtime zones.  This wasn't accounted for when using non-UTC datetimes with queue.enqueue_at()

* Updates tests with mocked timezones to test both scenarios</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Took into account DST when computing localtime zones.  This wasn't accounted for when using non-UTC datetimes with queue.enqueue_at()

* Updates tests with mocked timezones to test both scenarios</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/master' into multi-dependencies</title>
<updated>2020-05-23T12:32:38+00:00</updated>
<author>
<name>Selwin Ong</name>
<email>selwin.ong@gmail.com</email>
</author>
<published>2020-05-23T12:32:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/commit/?id=21bf5890c0410f2d51f5f95eea60adfb092c61d8'/>
<id>21bf5890c0410f2d51f5f95eea60adfb092c61d8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use pickle.HIGHEST_PROTOCOL by default (#1254)</title>
<updated>2020-05-16T10:42:07+00:00</updated>
<author>
<name>Bo Bayles</name>
<email>bbayles@gmail.com</email>
</author>
<published>2020-05-16T10:42:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/commit/?id=f0846a764545228d0551ec51c4c7441f2aa2a65a'/>
<id>f0846a764545228d0551ec51c4c7441f2aa2a65a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update Job#dependencies_are_met ...</title>
<updated>2020-04-27T18:53:23+00:00</updated>
<author>
<name>thomas</name>
<email>thomas.matecki@gmail.com</email>
</author>
<published>2020-04-27T18:53:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/commit/?id=0b528dae4b763ee8f1f7af9d3a5fd85b301fa6e6'/>
<id>0b528dae4b763ee8f1f7af9d3a5fd85b301fa6e6</id>
<content type='text'>
... such that it fetch all dependency status using SMEMBERS and HGET rather than SORT.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... such that it fetch all dependency status using SMEMBERS and HGET rather than SORT.
</pre>
</div>
</content>
</entry>
<entry>
<title>Address Deleted Dependencies</title>
<updated>2020-04-17T03:39:44+00:00</updated>
<author>
<name>thomas</name>
<email>thomas.matecki@gmail.com</email>
</author>
<published>2020-03-13T03:49:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/commit/?id=01ebe25f5626f2b433932683fefbc00afd81cf5e'/>
<id>01ebe25f5626f2b433932683fefbc00afd81cf5e</id>
<content type='text'>
1) Check if `created_at` when checking if dependencies are met.

   If `created_at` is `None` then the job has been deleted. This is sort of hack - we just need one of the fields on the job's hash that is ALWAYS populated. You can persist a job to redis without setting status...

2) Job#fetch_dependencies no longer raises NoSuchJob.

   If one of a job's dependencies has been deleted from Redis, it is not returned from `fetch_dependencies` and no exception is raised.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1) Check if `created_at` when checking if dependencies are met.

   If `created_at` is `None` then the job has been deleted. This is sort of hack - we just need one of the fields on the job's hash that is ALWAYS populated. You can persist a job to redis without setting status...

2) Job#fetch_dependencies no longer raises NoSuchJob.

   If one of a job's dependencies has been deleted from Redis, it is not returned from `fetch_dependencies` and no exception is raised.
</pre>
</div>
</content>
</entry>
<entry>
<title>rename dependencies_finished to dependencies_are_met</title>
<updated>2020-04-17T03:33:17+00:00</updated>
<author>
<name>thomas</name>
<email>thomas.matecki@gmail.com</email>
</author>
<published>2020-02-23T05:00:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/commit/?id=9f15df2d5567d6697e4f7bddb68400f6f9d845c5'/>
<id>9f15df2d5567d6697e4f7bddb68400f6f9d845c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change get_dependency_statuses to dependencies_finished</title>
<updated>2020-04-17T03:33:17+00:00</updated>
<author>
<name>Thomas Matecki</name>
<email>thomas@marianatek.com</email>
</author>
<published>2019-12-20T03:46:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/commit/?id=d5921814e4cb23fdb7a090b70e774639af9511e2'/>
<id>d5921814e4cb23fdb7a090b70e774639af9511e2</id>
<content type='text'>
Convert method on Job to return a boolean and rename. Also use
fetch_many in Queue#enqueue_dependents.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Convert method on Job to return a boolean and rename. Also use
fetch_many in Queue#enqueue_dependents.
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not watch dependency key set</title>
<updated>2020-04-17T03:33:17+00:00</updated>
<author>
<name>Thomas Matecki</name>
<email>thomas@marianatek.com</email>
</author>
<published>2019-12-20T02:11:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/commit/?id=a69d91d2b2372a943b36288df9badfffbd86b22e'/>
<id>a69d91d2b2372a943b36288df9badfffbd86b22e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix patches for python2</title>
<updated>2020-04-17T03:33:17+00:00</updated>
<author>
<name>thomas</name>
<email>thomas.matecki@gmail.com</email>
</author>
<published>2019-12-15T04:52:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/rq.git/commit/?id=4440669f3ca44e025aedcf7123c3602c60b1a763'/>
<id>4440669f3ca44e025aedcf7123c3602c60b1a763</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
