Zammad: A tarefa DataPrivacy falha em algumas situações

Criado em 9 fev. 2021  ·  8Comentários  ·  Fonte: zammad/zammad

Infos:

  • Versão Zammad usada: 3.6
  • Método de instalação (fonte, pacote, ..): qualquer
  • Sistema operacional: qualquer
  • Banco de dados + versão: qualquer
  • Versão do Elasticsearch: qualquer
  • Navegador + versão: qualquer
  • Nota: tropecei nisso durante tarefas de monitoramento em configurações hospedadas. Acontece com mais frequência recentemente.

Comportamento esperado:

DataPrivacy ajustará ou removerá todas as referências de usuários a serem excluídos, se necessário.

Comportamento real:

Ao excluir um agente, às vezes acontece que essas tarefas falham porque o usuário ainda está sendo referenciado em ActivityStreams.

Depois de limpar esses problemas, geralmente você pode reprocessar a Tarefa DataPrivacy sem problemas.

Exemplo:

`` `

<: invalidforeignkey: i = "20">

DETALHE: A chave (id) = (4) ainda é referenciada na tabela "activity_streams".
: EXCLUIR DE "usuários" ONDE "usuários". "Id" = $ 1>
DataPrivacyTask.find (1) notificar ATUALIZADO 2021-02-09 10:19:55 UTC
Nenhum ActiveJobLock encontrado para DataPrivacyTaskJob (ID do trabalho: d2e8f8c9-305a-417f-8d4d-3925f9bf823b) com a chave 'DataPrivacyTaskJob'.
DataPrivacyTaskJob realizado (ID do trabalho: d2e8f8c9-305a-417f-8d4d-3925f9bf823b) de DelayedJob (padrão) em 497,72 ms
=> nulo
`` `

Passos para reproduzir o comportamento:

  • trabalhar para ser excluído do agente
  • deixe alguém deletar a conta depois de wards

Sim, tenho certeza que isso é um bug e nenhuma solicitação de recurso ou uma questão geral.

bug data privacy prioritised by payment verified

Comentários muito úteis

Na próxima vez que esses erros ocorrerem, poderemos verificar qual coluna está relacionada ao erro por meio do console psql \d+ table (verificando o nome da chave estrangeira).

Também poderíamos adicionar um dumper ao app / models / relevant / has_activity_stream_log.rb para ver se criamos por engano novas entradas para o log do fluxo de atividades enquanto excluímos o usuário.

Todos 8 comentários

o usuário ainda é referenciado em ActivityStreams

Como no fluxo de atividades do próprio usuário ou referenciado no fluxo de atividades de outro usuário?

Como no fluxo de atividades do próprio usuário ou referenciado no fluxo de atividades de outro usuário?

Eu não posso responder a essa pergunta.
Atualmente, tenho que remover o ActivityStream completo, porque não é suficiente para limpar o_id: <affected-user> e created_by_id: <affected-user> .

Na próxima vez que esses erros ocorrerem, poderemos verificar qual coluna está relacionada ao erro por meio do console psql \d+ table (verificando o nome da chave estrangeira).

Também poderíamos adicionar um dumper ao app / models / relevant / has_activity_stream_log.rb para ver se criamos por engano novas entradas para o log do fluxo de atividades enquanto excluímos o usuário.

Portanto, isso afeta uma instância novamente.
Desta vez, assegurei-me de olhar mais profundamente.

O usuário afetado é um agente.
O usuário afetado possui ID 235017 .

#<ActiveRecord::InvalidForeignKey: PG::ForeignKeyViolation: ERROR:  update or delete on table "users" violates foreign key constraint "fk_rails_5e0981116b" on table "activity_streams"
DETAIL:  Key (id)=(235017) is still referenced from table "activity_streams".
: DELETE FROM "users" WHERE "users"."id" = $1>

Então, verifiquei as referências - aqui está um despejo completo:

=> \d+ activity_streams
                                                                  Table "public.activity_streams"
          Column           |              Type              |                           Modifiers                           | Storage | Stats target | Description
---------------------------+--------------------------------+---------------------------------------------------------------+---------+--------------+-------------
 id                        | integer                        | not null default nextval('activity_streams_id_seq'::regclass) | plain   |              |
 activity_stream_type_id   | integer                        | not null                                                      | plain   |              |
 activity_stream_object_id | integer                        | not null                                                      | plain   |              |
 permission_id             | integer                        |                                                               | plain   |              |
 group_id                  | integer                        |                                                               | plain   |              |
 o_id                      | integer                        | not null                                                      | plain   |              |
 created_by_id             | integer                        | not null                                                      | plain   |              |
 created_at                | timestamp without time zone    | not null                                                      | plain   |              |
 updated_at                | timestamp(3) without time zone | not null                                                      | plain   |              |
Indexes:
    "activity_streams_pkey" PRIMARY KEY, btree (id)
    "index_activity_streams_on_activity_stream_object_id" btree (activity_stream_object_id)
    "index_activity_streams_on_activity_stream_type_id" btree (activity_stream_type_id)
    "index_activity_streams_on_created_at" btree (created_at)
    "index_activity_streams_on_created_by_id" btree (created_by_id)
    "index_activity_streams_on_group_id" btree (group_id)
    "index_activity_streams_on_id" btree (id) WITH (fillfactor='90')
    "index_activity_streams_on_o_id" btree (o_id)
    "index_activity_streams_on_permission_id" btree (permission_id)
    "index_activity_streams_on_permission_id_and_group_id" btree (permission_id, group_id)
    "index_activity_streams_on_permission_id_group_id_created_at" btree (permission_id, group_id, created_at)
Foreign-key constraints:
    "fk_rails_15ed0d0859" FOREIGN KEY (activity_stream_type_id) REFERENCES type_lookups(id)
    "fk_rails_2abed7f6ca" FOREIGN KEY (permission_id) REFERENCES permissions(id)
    "fk_rails_5e0981116b" FOREIGN KEY (created_by_id) REFERENCES users(id)
    "fk_rails_9006c69204" FOREIGN KEY (group_id) REFERENCES groups(id)
    "fk_rails_add7ae94d9" FOREIGN KEY (activity_stream_object_id) REFERENCES object_lookups(id)
Has OIDs: no

Então, para continuar, eu queria atualizar created_by_id para 1 para poder continuar. Isso pode estar incorreto do ponto de vista do fluxo de trabalho, mas eu queria ver o que acontece.

No entanto, não consegui encontrar nenhum ActivitySteams por IDs de usuário afetados.
Também verifiquei o_id para tabulação dupla, mesmo resultado.

2.6.6 :001 > ActivityStream.where(created_by_id: 235017).count => 0 2.6.6 :002 > ActivityStream.where(created_by_id: 256036).count => 0

Então, o que eu fiz foi, eliminei todos os 437.783 ActivityStreams.
O que quer que aconteça com ActivityStreams ... não está mais lá após o rollback. Possivelmente, nós realmente criamos pelo menos uma entrada no fluxo

Se você fornecer o código de depuração, irei implementá-lo na próxima vez que isso acontecer.

Se eu executar User.find(256036).destroy manualmente, o erro persiste

verifique este lugar:

https://github.com/zammad/zammad/blob/c3b1b4413f1f9a997062012853159b59664aaa23/app/models/activity_stream.rb#L32

coloque o seguinte no início da função:

Rails.logger.error "ActivityStream.add - #{data.inspect}"

Talvez ele seja executado quando você estiver tentando destruir o usuário.

Também seria interessante se essa mudança corrigisse o problema:

https://github.com/zammad/zammad/blob/c3b1b4413f1f9a997062012853159b59664aaa23/app/models/user.rb#L1172

Substituir:

    user_columns = %w[created_by_id updated_by_id origin_by_id owner_id archived_by_id published_by_id internal_by_id]

com

    user_columns = %w[updated_by_id created_by_id origin_by_id owner_id archived_by_id published_by_id internal_by_id]

Talvez ele seja executado quando você estiver tentando destruir o usuário.

Veja meu comentário acima, isso também falha.


Então, inicialmente, eu apenas atualizei activity_stream.rb e posso dizer que ele cria ActivityStreams ....
Eu filtrei apenas para o ID do usuário, aqui estão as linhas de registro relevantes:

I, [2021-02-12T13:52:04.761263 #24634-12253600]  INFO -- : Enqueued SearchIndexJob (Job ID: c366e837-ef18-408f-b01c-81fa85048f1d) to DelayedJob(default) with arguments: "User", 235017
I, [2021-02-12T13:52:04.766917 #24634-12253600]  INFO -- : Won't enqueue SearchIndexJob (Job ID: a57fca87-0981-4f31-b8b2-e45fd8bc473b) because of already existing job with lock key 'SearchIndexJob/User/235017'.
I, [2021-02-12T13:52:04.767042 #24634-12253600]  INFO -- : Enqueued SearchIndexJob (Job ID: a57fca87-0981-4f31-b8b2-e45fd8bc473b) to DelayedJob(default) with arguments: "User", 235017
I, [2021-02-12T13:52:04.772151 #24634-12253600]  INFO -- : Won't enqueue SearchIndexJob (Job ID: 8bbaa863-73e5-4e1b-9723-8786f7926d0f) because of already existing job with lock key 'SearchIndexJob/User/235017'.
I, [2021-02-12T13:52:04.772251 #24634-12253600]  INFO -- : Enqueued SearchIndexJob (Job ID: 8bbaa863-73e5-4e1b-9723-8786f7926d0f) to DelayedJob(default) with arguments: "User", 235017
I, [2021-02-12T13:52:04.777065 #24634-12253600]  INFO -- : Won't enqueue SearchIndexJob (Job ID: 09675985-b427-4dd7-b705-6e0d3f570e48) because of already existing job with lock key 'SearchIndexJob/User/235017'.
I, [2021-02-12T13:52:04.777179 #24634-12253600]  INFO -- : Enqueued SearchIndexJob (Job ID: 09675985-b427-4dd7-b705-6e0d3f570e48) to DelayedJob(default) with arguments: "User", 235017
I, [2021-02-12T13:52:04.782556 #24634-12253600]  INFO -- : Won't enqueue SearchIndexJob (Job ID: 94843eea-4c8b-49ea-9ee1-b2ec887e3e86) because of already existing job with lock key 'SearchIndexJob/User/235017'.
I, [2021-02-12T13:52:04.782672 #24634-12253600]  INFO -- : Enqueued SearchIndexJob (Job ID: 94843eea-4c8b-49ea-9ee1-b2ec887e3e86) to DelayedJob(default) with arguments: "User", 235017
I, [2021-02-12T13:52:06.290291 #22773-80092120]  INFO -- : Started GET "/api/v1/users/235017?full=true&_=1613117540190" for 95.91.247.183 at 2021-02-12 13:52:06 +0100
I, [2021-02-12T13:52:06.293546 #22773-80092120]  INFO -- :   Parameters: {"full"=>"true", "_"=>"1613117540190", "id"=>"235017"}
E, [2021-02-12T13:52:06.555071 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>373270, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.571492 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>373287, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.583591 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374069, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.594086 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374103, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.606140 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374123, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.619450 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374132, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.630586 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374154, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.641077 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374317, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.653280 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374353, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.663925 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374368, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.673922 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374375, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.684646 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374423, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.696720 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374612, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.706860 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>374642, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.718882 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>376170, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.730057 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>376222, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.738738 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>376279, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.746669 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>376293, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.765583 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>376896, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.775648 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>376918, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.783650 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>377090, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.790673 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>377121, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.797881 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>377172, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.805583 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>377195, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.812735 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>377643, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.820101 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>377658, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.828089 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>377684, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.837154 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>377722, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.845596 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>377739, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.855615 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>378520, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.864245 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>378535, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.872182 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>378539, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.881454 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>378563, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.889824 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>381402, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.897208 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>381529, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.904864 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>382807, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.920371 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>383644, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.929059 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>384555, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.937710 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>384592, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.946267 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>384707, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.954190 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>386756, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.963701 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>386839, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.972290 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>386925, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.985517 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>387019, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:06.994036 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>392894, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:06 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.004219 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>394308, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.015698 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>395655, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.027174 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>411773, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.035401 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>411775, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.043307 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>411810, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.050740 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>411821, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.058442 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>411830, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.068894 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>411915, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.083182 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>411931, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.092129 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>411974, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.102575 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>411978, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.120466 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>411992, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.127984 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412014, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.134930 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412164, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.142121 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412204, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.151744 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412207, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.160933 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412234, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.169160 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412257, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.175998 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412268, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.182679 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412299, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.189430 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412354, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.196761 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412366, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.203885 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412397, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.210616 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412409, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.217303 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412416, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.224525 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412434, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.232780 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412450, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.241555 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412453, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.249908 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412463, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.258301 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412483, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.278665 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412485, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.287656 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412520, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.296314 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412523, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.308812 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412535, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.318490 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412944, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.327143 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>412963, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.335781 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413025, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.344524 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413112, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.352052 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413156, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.359369 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413168, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.367090 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413189, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.376616 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413204, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.388120 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413325, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.398880 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413336, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.407571 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413352, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.415461 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413380, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.423144 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413399, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.430372 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413771, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.438598 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413783, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.447022 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413802, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.467833 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413809, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.475595 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413819, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.488645 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413909, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.498488 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413930, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.506368 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413937, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.514699 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>413958, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.526487 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>414358, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.537684 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>414360, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.547479 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>414510, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.558283 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>414640, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.569061 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>414656, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.578071 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>414812, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.588531 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>414996, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.602610 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>415010, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.612422 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>415014, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.620373 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>415065, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.629373 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>415098, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.637063 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>415127, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.644391 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>415174, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.662440 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>416569, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.671318 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>416579, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.680499 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>416665, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.689216 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>416746, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.697205 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417143, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.705178 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417218, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.713723 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417222, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.724974 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417279, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.737525 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417297, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.745336 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417339, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.753424 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417347, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.762561 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417866, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.770879 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417911, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.779294 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417920, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.789358 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417955, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.800695 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417965, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.811367 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>417980, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.819222 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>418000, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.827104 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>418247, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.844752 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>418256, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.853090 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>418273, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.861131 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>418744, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.869577 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>418784, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.879709 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419321, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.889750 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419371, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.900142 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419379, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.910891 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419386, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.920019 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419486, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.927488 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419504, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.934832 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419509, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.942341 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419521, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.950082 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419526, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.959251 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419558, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.967061 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419564, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.974849 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419567, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.983106 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>419766, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.991154 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>420267, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:07.998826 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>420358, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:07 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.018542 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>420470, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.026600 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>420500, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.034049 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>426550, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.046138 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>426725, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.059153 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>427487, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.071495 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>427819, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.080872 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>427832, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.089341 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>427865, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.102434 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>429863, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.117843 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>430319, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.141756 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>430337, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.162279 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>430351, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.180782 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>431334, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.204687 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483089, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.225739 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483099, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.241305 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483107, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.257225 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483113, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.276783 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483118, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.299481 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483130, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.326720 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483139, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.349520 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483147, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.361505 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483732, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.373864 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483738, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.388000 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483744, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.398563 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483748, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.411611 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483750, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
E, [2021-02-12T13:52:08.422297 #24634-12253600] ERROR -- : ActivityStream.add - {:o_id=>483765, :type=>"update", :object=>"Ticket::Article", :group_id=>2, :permission=>"ticket.agent", :created_at=>Fri, 12 Feb 2021 12:52:08 UTC +00:00, :created_by_id=>235017}
DETAIL:  Key (id)=(235017) is still referenced from table "activity_streams".

Em seguida, mudei para o ajuste de user.rb - apenas uma observação lateral, na instância 3.6 estável do cliente, a linha afetada está 2 linhas abaixo da mencionada aqui. Eu mudei a linha de qualquer maneira.

Alterar a ordem não corrige o problema, basicamente o logout feito de cima parece o mesmo tbh.

oh nice debug infos !! Muito bem, muito obrigado ... acho que agora sei onde está o problema, deixe-me dar uma olhada ...

Esta página foi útil?
0 / 5 - 0 avaliações