No-ops
8a7ac5b450
Merge branch 'develop'
2017-09-27 16:57:19 +02:00
No-ops
a2eb7ba410
Remove unused imports
2017-09-27 16:57:03 +02:00
No-ops
53bb686b76
Merge branch 'develop'
2017-09-27 16:51:18 +02:00
Christoffer Fjellström
e701107e40
Remove broken test suite
...
OS and configuration specific integration test
2017-09-27 16:42:48 +02:00
Christoffer Fjellström
99d317427f
Add skipping for integration tests when running unit tests
...
Run integration tests with the -integration flag
2017-09-27 16:42:21 +02:00
Christoffer Fjellström
d9ad23413d
Merge pull request #1 from Detectify/develop
...
Add lock on job handler assignment
2017-09-27 12:00:00 +02:00
Christoffer Fjellström
2dbf199260
Add lock on job handler assignment
...
Fixes race condition on jobs being done before handler is set.
2017-09-27 11:57:57 +02:00
Christoffer Fjellström
27942f55cd
Add sync lock on do() to avoid race conditions when creating jobs
2017-02-03 10:06:27 +01:00
Xing
b79fee2965
Merge pull request #70 from JessonChan/master
...
concurrent map bug fixed #70
2016-05-06 22:33:03 +12:00
JessonChan
dd82e211a3
concurrent map bug fixed
2016-05-06 18:00:58 +08:00
Xing
68777318f9
Merge pull request #65 from JessonChan/master
...
fixed #65
2016-04-24 11:03:26 +12:00
JessonChan
99c8032384
fix a bug when high qps
2016-04-20 12:54:21 +08:00
Xing
21cc8de64f
Merge pull request #63 from kujohn/pool-custom-handler
...
Allow built in selectionHandlers to be reused outside of package
2015-12-14 18:41:29 +08:00
John Ku
9d99accce2
Allow built in selectionHandlers to be reused outside of package
2015-12-11 13:48:02 -08:00
Xing
6d9b2fba51
Merge pull request #62 from kujohn/pool-custom-handler
...
Export SelectionHandler
2015-12-11 12:44:35 +08:00
John Ku
1c4b8aa000
Export pool.clients for custom Pool instantiation
2015-12-10 13:54:48 -08:00
John Ku
d20c3c7bd1
Allow custom Pool without constructor
2015-12-10 11:19:04 -08:00
Xing Xing
c6c6c9cac2
don't use sigillum
2015-07-10 20:30:35 +08:00
Xing
503d523dbf
Merge pull request #60 from micmac/master
...
Replace mutex in client.do() with a channel to avoid deadlock and int…
2015-07-10 20:24:16 +08:00
Endre Hirling
c615e74af8
Replace mutex in client.do() with a channel to avoid deadlock and introduce command timeout
2015-07-06 21:40:49 +02:00
Xing Xing
df1af4f8cb
80 chars/line
2015-01-20 10:28:36 +08:00
Xing Xing
b612b80f80
complete the list of contributors
2015-01-20 10:27:12 +08:00
Xing Xing
2c9d82830c
merge, update README to the newest API design.
2015-01-20 09:43:54 +08:00
C.R. Kirkwood-Watts
37db439a4a
Update README.md
...
Updated to reflect new type names.
2015-01-19 10:28:21 -08:00
Xing Xing
bc80b2f853
fixed signal method
2015-01-16 17:41:19 +08:00
Xing Xing
939189448e
golib/signal upgrade
2015-01-15 10:28:21 +08:00
Xing Xing
9dbb3ea3fc
added lock-write to co-ordinate package sequence #56
2015-01-15 10:26:53 +08:00
Xing Xing
c01a2e22c0
upgrade travis to Go 1.4
2015-01-10 00:09:38 +08:00
Xing Xing
ad9b3cb988
go fmt
2015-01-06 11:45:18 +08:00
Xing Xing
a003eac543
fixed the closing method
2015-01-06 11:34:39 +08:00
Xing Xing
d32eb195e1
Merge branch 'kdar-big-data'
2014-12-10 09:14:08 +08:00
Xing Xing
25735c8488
merge for issue #33
2014-12-10 09:13:49 +08:00
Xing
ea92c122a5
Merge pull request #50 from AzuraMeta/patch-1
...
Fixed WORK_FAIL needing 2 arguments
2014-08-21 16:32:24 +08:00
Gabriel Cristian Alecu
e005ea4442
Fixed WORK_FAIL needing 2 arguments
...
According to http://gearman.org/protocol/ , WORK_FAIL only has 1 argument: the handle
2014-08-21 10:41:23 +03:00
Xing
9387a36a0b
Merge pull request #49 from gbarr/write-errors
...
Do not ignore write errors
2014-08-21 09:24:18 +08:00
Graham Barr
7bcc4de76f
Do not ignore write errors
2014-08-20 11:27:32 -05:00
Xing
ccb6f4a24f
Merge pull request #48 from gbarr/large-packet-read
...
Avoid read channel corruption when response size > bufferSize
2014-08-19 17:11:42 +08:00
Graham Barr
d82da8fd71
Avoid read channel corruption when response size > bufferSize
...
When receiving a response, what was happening
1. Read bufferSize and it gets assigned to leftdata
2. Read another bufferSize
3. 2 buffers get appended, but leftdata still points to first buffer
4. Process data buffer which contains only complete responses
5. Back to ReadLoop, but leftdata still points to first incomplete buffer
causing corrupt data to be processed
Solution is to make leftdata nil once we have merged it with the second buffer
2014-08-18 12:35:31 -05:00
Graham Barr
49ea8c0ec1
Increase buffer size to 8K
2014-08-18 09:51:33 -05:00
Xing
1f303d8145
Merge pull request #47 from gbarr/memleak
...
When a job completes, remove its handler
2014-07-25 09:46:21 +08:00
Graham Barr
3e556edb2d
When a job completes, remove its handler
2014-07-24 14:20:56 -05:00
Xing Xing
d40888817d
Merge branch 'master' into 0.2-dev
2014-06-16 11:00:20 +08:00
Xing
dde0c3e9b3
Merge pull request #45 from draxil/worker_disconnect_testing
...
Allow reconnect from error handler
2014-06-16 10:58:57 +08:00
Xing Xing
14f4df8ede
Joe helped us greatly
2014-06-13 10:55:32 +08:00
Xing Xing
c8d59ea348
Merge branch 'master' into 0.2-dev
2014-06-13 10:51:48 +08:00
Xing
c6c0d4f481
Merge pull request #43 from draxil/master
...
Handling disconnects
2014-06-13 10:25:57 +08:00
Joe Higton
97731e1774
FIX: EOF disconnect error also called raw handler afterwards
2014-06-10 04:09:27 +01:00
Joe Higton
09c626f488
Cope with io.EOF as a disconnect error
2014-06-10 03:46:21 +01:00
Joe Higton
1ebb3d5fcc
Wrap disconnect errors and allow reconnect
2014-06-10 03:23:18 +01:00
Joe Higton
6cf2680431
Merge branch 'worker_disconnect_testing'
2014-06-07 07:26:41 +01:00