Skip to content
Snippets Groups Projects

Feat add user reg logger

Created by: eesaanatluri

This PR consists of agent that stores the account request object inside a sqlite DB.

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
1 #!/usr/bin/env python
2 import json
3 import sys
4 import dataset
5 import logging
6 from rc_rmq import RCRMQ
7 from datetime import datetime
8
9 # Define queue name
10 task = 'reg_logger'
11
12 # Instantiate rabbitmq object
13 reg_logger = RCRMQ({'exchange': 'RegUsr', 'exchange_type': 'topic'})
14
15 # Parse arguments
16 args = rc_util.get_args()
  • Bo-Chun Chen
  • Merged by: rtripath89 at 2020-09-25 20:11:48 UTC

  • Please register or sign in to reply
    Loading