Skip to content

Commit cbef12a

Browse files
committed
Remove old last run file management
Sem-Ver: bugfix
1 parent 8aff42b commit cbef12a

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

caso/extract/manager.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,6 @@ def _get_keystone_client(self):
132132
def get_lastrun(self, project):
133133
"""Get lastrun file for a given project."""
134134
lfile = f"{self.last_run_base}.{project}"
135-
if not os.path.exists(lfile):
136-
LOG.warning(
137-
"WARNING: Old global lastrun file detected and no "
138-
"project specific file found, using it for this run"
139-
)
140-
lfile = self.last_run_base
141-
142135
date = "1970-01-01"
143136

144137
if os.path.exists(lfile):

0 commit comments

Comments
 (0)