Skip to content

Commit

Permalink
fix: parameter, libs (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphrass authored Aug 18, 2023
1 parent 2a19009 commit ca1a16d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion butterfree/load/writers/historical_feature_store_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,14 @@ def __init__(
debug_mode: bool = False,
interval_mode: bool = False,
check_schema_hook: Hook = None,
row_count_validation: bool = True,
):
super(HistoricalFeatureStoreWriter, self).__init__(
db_config or MetastoreConfig(), debug_mode, interval_mode
db_config or MetastoreConfig(),
debug_mode,
interval_mode,
False,
row_count_validation,
)
self.database = database or environment.get_variable(
"FEATURE_STORE_HISTORICAL_DATABASE"
Expand Down
2 changes: 2 additions & 0 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ sphinxemoji==0.1.8
sphinx-rtd-theme==0.5.2
recommonmark==0.7.1
pyarrow>=1.0.0
setuptools
wheel

1 comment on commit ca1a16d

@chip-n-dale
Copy link

@chip-n-dale chip-n-dale bot commented on ca1a16d Aug 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @ralphrass!

The GitLeaks SecTool reported some possibly exposed credentials/secrets, how about giving them a look?

GitLeaks Alert Sync
[
  {
    "line": "    webhook: REDACTED",
    "lineNumber": 141,
    "offender": "REDACTED",
    "offenderEntropy": -1,
    "commit": "b6a5daf28abc035f74b9685aab573d384680b9d1",
    "repo": "butterfree",
    "repoURL": "",
    "leakURL": "",
    "rule": "Slack Webhook",
    "commitMessage": "initial commit\n",
    "author": "Alvaro",
    "email": "[email protected]",
    "file": ".drone.yml",
    "date": "2020-01-03T14:21:51-03:00",
    "tags": "key, slack"
  },
  {
    "line": "    webhook: REDACTED",
    "lineNumber": 159,
    "offender": "REDACTED",
    "offenderEntropy": -1,
    "commit": "b6697aa708fec0c5a9e3af0b2713cee6f45ff675",
    "repo": "butterfree",
    "repoURL": "",
    "leakURL": "",
    "rule": "Slack Webhook",
    "commitMessage": "hail to the butterfree\n",
    "author": "Alvaro",
    "email": "[email protected]",
    "file": ".drone.yml",
    "date": "2020-01-03T11:07:44-03:00",
    "tags": "key, slack"
  }
]

In case of false-positives, more information is available on GitLeaks FAQ
If you had any other problem or question during this process, be sure to contact us on the Security space on GChat!

Please sign in to comment.