diff --git a/inventory/group_vars/freshmaker-stg b/inventory/group_vars/freshmaker-stg index 21cf20127c..ca3e5b5dad 100644 --- a/inventory/group_vars/freshmaker-stg +++ b/inventory/group_vars/freshmaker-stg @@ -1,8 +1,8 @@ --- # For app config freshmaker_messaging_topic_prefix: -- org.fedoraproject.stg - org.fedoraproject.prod +- org.fedoraproject.stg freshmaker_parsers: - freshmaker.parsers.git:GitReceiveParser diff --git a/playbooks/groups/freshmaker.yml b/playbooks/groups/freshmaker.yml index 8eeb09cdff..704ab7f4f0 100644 --- a/playbooks/groups/freshmaker.yml +++ b/playbooks/groups/freshmaker.yml @@ -89,3 +89,14 @@ handlers: - import_tasks: "{{ handlers_path }}/restart_services.yml" + +- name: show freshmaker app config on stage (for temp troubleshoot) + hosts: freshmaker-stg + + tasks: + - name: Slurp hosts file + slurp: + src: /etc/freshmaker/config.py + register: slurpfile + + - debug: msg="{{ slurpfile['content'] | b64decode }}"