diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-09-04 21:49:21 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-09-11 21:58:31 +0200 |
commit | c98db1b653b5dc8b701422190b02d9fbf10c4e68 (patch) | |
tree | 5f02de371264143a4e81231ad16f605435cb4d22 /app/config/config.yml | |
parent | ef75e1220ebb76a8df019d946460ad612759f0bb (diff) | |
download | wallabag-c98db1b653b5dc8b701422190b02d9fbf10c4e68.tar.gz wallabag-c98db1b653b5dc8b701422190b02d9fbf10c4e68.tar.zst wallabag-c98db1b653b5dc8b701422190b02d9fbf10c4e68.zip |
Convert other imports to Rabbit
Diffstat (limited to 'app/config/config.yml')
-rw-r--r-- | app/config/config.yml | 43 |
1 files changed, 41 insertions, 2 deletions
diff --git a/app/config/config.yml b/app/config/config.yml index fa829637..d39bef95 100644 --- a/app/config/config.yml +++ b/app/config/config.yml | |||
@@ -226,13 +226,28 @@ old_sound_rabbit_mq: | |||
226 | vhost: / | 226 | vhost: / |
227 | lazy: true | 227 | lazy: true |
228 | producers: | 228 | producers: |
229 | wallabag_pocket: | 229 | import_pocket: |
230 | connection: default | 230 | connection: default |
231 | exchange_options: | 231 | exchange_options: |
232 | name: 'wallabag.import.pocket' | 232 | name: 'wallabag.import.pocket' |
233 | type: topic | 233 | type: topic |
234 | import_readability: | ||
235 | connection: default | ||
236 | exchange_options: | ||
237 | name: 'wallabag.import.readability' | ||
238 | type: topic | ||
239 | import_wallabag_v1: | ||
240 | connection: default | ||
241 | exchange_options: | ||
242 | name: 'wallabag.import.wallabag_v1' | ||
243 | type: topic | ||
244 | import_wallabag_v2: | ||
245 | connection: default | ||
246 | exchange_options: | ||
247 | name: 'wallabag.import.wallabag_v2' | ||
248 | type: topic | ||
234 | consumers: | 249 | consumers: |
235 | wallabag_pocket: | 250 | import_pocket: |
236 | connection: default | 251 | connection: default |
237 | exchange_options: | 252 | exchange_options: |
238 | name: 'wallabag.import.pocket' | 253 | name: 'wallabag.import.pocket' |
@@ -240,3 +255,27 @@ old_sound_rabbit_mq: | |||
240 | queue_options: | 255 | queue_options: |
241 | name: 'wallabag.import.pocket' | 256 | name: 'wallabag.import.pocket' |
242 | callback: wallabag_import.consumer.pocket | 257 | callback: wallabag_import.consumer.pocket |
258 | import_readability: | ||
259 | connection: default | ||
260 | exchange_options: | ||
261 | name: 'wallabag.import.readability' | ||
262 | type: topic | ||
263 | queue_options: | ||
264 | name: 'wallabag.import.readability' | ||
265 | callback: wallabag_import.consumer.readability | ||
266 | import_wallabag_v1: | ||
267 | connection: default | ||
268 | exchange_options: | ||
269 | name: 'wallabag.import.wallabag_v1' | ||
270 | type: topic | ||
271 | queue_options: | ||
272 | name: 'wallabag.import.wallabag_v1' | ||
273 | callback: wallabag_import.consumer.wallabag_v1 | ||
274 | import_wallabag_v2: | ||
275 | connection: default | ||
276 | exchange_options: | ||
277 | name: 'wallabag.import.wallabag_v2' | ||
278 | type: topic | ||
279 | queue_options: | ||
280 | name: 'wallabag.import.wallabag_v2' | ||
281 | callback: wallabag_import.consumer.wallabag_v2 | ||