Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-gtokernliang committed Dec 18, 2024
1 parent 8c5f6c5 commit 72d5f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/trulens/core/database/sqlalchemy.py
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ def insert_event(self, event: Event) -> types_schema.EventID:
"""See [DB.insert_event][trulens.core.database.base.DB.insert_event]."""
with self.session.begin() as session:
_event = self.orm.Event.parse(event, redact_keys=self.redact_keys)
session.merge(_event)
session.add(_event)
logger.info(
f"{text_utils.UNICODE_CHECK} added event {_event.event_id}"
)
Expand Down

0 comments on commit 72d5f10

Please sign in to comment.