Guest User

Untitled

a guest
May 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. binascii.Error: Incorrect padding
  2.  
  3. Unrecoverable error: Error('Incorrect padding',)
  4.  
  5. public function handle(ElasticUpdateOrCreate $event)
  6. {
  7. $job = (new SendUpdateOrCreateToElastic($event->id, $event->type))
  8. ->onQueue($this->queue)
  9. ->onMessageGroup('default')
  10. ->withDeduplicator('unique');
  11. dispatch($job);
  12. }
  13.  
  14. public function __construct($id, $type, $source = null)
  15. {
  16. $this->id = $id;
  17. $this->type = $type;
  18. $this->source = $source;
  19. }
  20.  
  21.  
  22. public function handle(ElasticService $elasticService)
  23. {
  24. try {
  25. $elasticService->updateOrCreate($this->id, $this->type);
  26. } catch (Exception $e) {
  27. Log::error($e->getMessage());
  28. }
  29. }
  30.  
  31. UnicodeDecodeError: 'utf-8' codec can't decode byte 0x95 in position 3: invalid start byte
  32.  
  33. amqp 2.2.2
  34. billiard 3.5.0.3
  35. boto3 1.5.2
  36. botocore 1.8.50
  37. celery 4.1.0
  38. Django 2.0
  39. docutils 0.14
  40. jmespath 0.9.3
  41. kombu 4.1.0
  42. pip 10.0.1
  43. pycurl 7.43.0.1
  44. python-dateutil 2.7.3
  45. pytz 2018.4
  46. s3transfer 0.1.13
  47. setuptools 39.2.0
  48. six 1.11.0
  49. vine 1.1.4
  50. wheel 0.31.1
Add Comment
Please, Sign In to add comment