Skip to content

Commit

Permalink
test case updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Roopan-Microsoft committed Nov 18, 2024
1 parent aa5e472 commit 771830c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion ClientAdvisor/App/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def create_app():
app.config["TEMPLATES_AUTO_RELOAD"] = True
# app.secret_key = secrets.token_hex(16)
# app.session_interface = SecureCookieSessionInterface()
# print(app.secret_key)
return app


Expand Down Expand Up @@ -1593,6 +1592,7 @@ def get_users():
cursor = conn.cursor()
cursor.execute("""select DATEDIFF(d,CAST(max(StartTime) AS Date),CAST(GETDATE() AS Date)) + 3 as ndays from ClientMeetings""")
rows = cursor.fetchall()
ndays = 0
for row in rows:
ndays = row['ndays']
sql_stmt1 = f'UPDATE ClientMeetings SET StartTime = dateadd(day,{ndays},StartTime), EndTime = dateadd(day,{ndays},EndTime)'
Expand Down
6 changes: 0 additions & 6 deletions ClientAdvisor/App/test_app.py

This file was deleted.

0 comments on commit 771830c

Please sign in to comment.