Skip to content

Commit

Permalink
[orm] fix user for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigul committed Jan 3, 2024
1 parent b54e198 commit fcf2f36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pycram/orm/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Implementation of base classes for orm modelling."""
import datetime
import getpass
import os
from typing import Optional

Expand Down Expand Up @@ -136,7 +137,7 @@ class ProcessMetaData(MappedAsDataclass, _Base):
init=False)
"""The timestamp where this row got created. This is an aid for versioning."""

created_by: Mapped[str] = mapped_column(default=os.getlogin(), init=False)
created_by: Mapped[str] = mapped_column(default=getpass.getuser(), init=False)
"""The user that created the experiment."""

description: Mapped[str] = mapped_column(init=False)
Expand Down

0 comments on commit fcf2f36

Please sign in to comment.