Skip to content

Commit

Permalink
fix: remove SiteMask and SiteMaskLogging
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Sep 12, 2024
1 parent 6f72a35 commit 7564550
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 22 deletions.
2 changes: 0 additions & 2 deletions diracx-cli/tests/legacy/cs_sync/integration_test.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -1216,8 +1216,6 @@ Systems
{
Default = Operator
getJobPilotOutput = authenticated
getSiteMask = authenticated
getSiteMaskStatus = authenticated
ping = authenticated
allowSite = SiteManager
allowSite += Operator
Expand Down
2 changes: 0 additions & 2 deletions diracx-cli/tests/legacy/cs_sync/integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -858,8 +858,6 @@ Systems:
allowSite: SiteManager, Operator
banSite: SiteManager, Operator
getJobPilotOutput: authenticated
getSiteMask: authenticated
getSiteMaskStatus: authenticated
ping: authenticated
Protocol: https
URLs:
Expand Down
18 changes: 0 additions & 18 deletions diracx-db/src/diracx/db/sql/job/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,24 +134,6 @@ class AtticJobParameters(JobDBBase):
RescheduleCycle = Column(Integer)


class SiteMask(JobDBBase):
__tablename__ = "SiteMask"
Site = Column(String(64), primary_key=True)
Status = Column(String(64))
LastUpdateTime = Column(DateTime)
Author = Column(String(255))
Comment = Column(Text)


class SiteMaskLogging(JobDBBase):
__tablename__ = "SiteMaskLogging"
Site = Column(String(64), primary_key=True)
UpdateTime = Column(DateTime, primary_key=True)
Status = Column(String(64))
Author = Column(String(255))
Comment = Column(Text)


class HeartBeatLoggingInfo(JobDBBase):
__tablename__ = "HeartBeatLoggingInfo"
JobID = Column(
Expand Down

0 comments on commit 7564550

Please sign in to comment.