src/functions/noproxy/cr_add_users_noproxy.py [38:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    num_rows = int(NUMBER_OF_ROWS)

    try:
        conn = pymysql.connect(
            host=ENDPOINT,
            user=USR,
            password=password,
            port=PORT,
            database=DBNAME,
            cursorclass=pymysql.cursors.DictCursor,
        )
        cur = conn.cursor()
        for i in range(int(NUMBER_OF_USERS)):
            dbusername = "user" + str(i)
            dbname = "user_database" + str(i)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/functions/proxy/cr_add_users_proxy.py [52:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    num_rows = int(NUMBER_OF_ROWS)

    try:
        conn = pymysql.connect(
            host=ENDPOINT,
            user=USR,
            password=password,
            port=PORT,
            database=DBNAME,
            cursorclass=pymysql.cursors.DictCursor,
        )
        cur = conn.cursor()
        for i in range(int(NUMBER_OF_USERS)):
            dbusername = "user" + str(i)
            dbname = "user_database" + str(i)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



