Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
update host_lms set client_config = client_config || '{"ingest":true}' where code='CODE';

Ingest status

Code Block
select h.id, 
  h.code, 
  h.client_config->'ingest',
  ps.process_name,
  ps.process_state->'cursor' 
from host_lms h, process_state ps 
where h.id = ps.context;