Skip to content

Commit

Permalink
Remove fix to relative persistence path for Kinesis (#10774)
Browse files Browse the repository at this point in the history
  • Loading branch information
giograno committed May 8, 2024
1 parent ff8f716 commit 7917b4a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions localstack/services/kinesis/kinesis_mock_server.py
Expand Up @@ -86,9 +86,7 @@ def _create_shell_command(self) -> Tuple[List, Dict]:

if self._data_dir and config.KINESIS_PERSISTENCE:
env_vars["SHOULD_PERSIST_DATA"] = "true"
# FIXME use relative path to current working directory until
# https://github.com/etspaceman/kinesis-mock/issues/554 is resolved
env_vars["PERSIST_PATH"] = os.path.relpath(self._data_dir)
env_vars["PERSIST_PATH"] = self._data_dir
env_vars["PERSIST_FILE_NAME"] = self._data_filename
env_vars["PERSIST_INTERVAL"] = config.KINESIS_MOCK_PERSIST_INTERVAL

Expand Down

0 comments on commit 7917b4a

Please sign in to comment.