Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerKSI committed Jul 5, 2023
1 parent f460637 commit 061dbf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flusher/flusher/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,14 +472,14 @@ def increase_oracle_script_count(self, id):

def update_oracle_script_last_request(self, id, timestamp):
self.conn.execute(
oracle_scripts.update(oracle_scripts.c.oracle_script_id == id).values(
oracle_scripts.update(oracle_scripts.c.id == id).values(
last_request=timestamp
)
)

def update_data_source_last_request(self, id, timestamp):
self.conn.execute(
data_sources.update(data_sources.c.data_source_id == id).values(
data_sources.update(data_sources.c.id == id).values(
last_request=timestamp
)
)
Expand Down

0 comments on commit 061dbf8

Please sign in to comment.