Skip to content

Commit

Permalink
correcting pylint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed Aug 15, 2024
1 parent d378ea9 commit 2986c7c
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions src/test/send_test_msgs.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,19 @@


if __name__ == '__main__':
"""
entry point to post a message to the a rabbit MQ with the parameters specified on the command line
use this SQL to generate legit test json data:
select jsonb_object_agg(i.key, i.value) from
(
select c.key, c.value
from config_item c
where instance_id=<> and uid='<>'
and key like '%.%'
) i;
"""
# entry point to post a message to the a rabbit MQ with the parameters specified on the command line
#
# use this SQL to generate legit test json data:
#
# select jsonb_object_agg(i.key, i.value) from
# (
# select c.key, c.value
# from config_item c
# where instance_id=<> and uid='<>'
# and key like '%.%'
# ) i;
#

# main entry point for the rule run.

# create a command line parser
Expand Down

0 comments on commit 2986c7c

Please sign in to comment.