Skip to content

Commit

Permalink
Fix sensitive to be boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Feb 27, 2024
1 parent cb97df2 commit 8a98e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hub_utils/meltano_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def _parse_sdk_about_settings(sdk_about_dict, enforce_desc=False):
if kind != "date_iso8601":
setting_details["value"] = settings.get("default")
if kind == "password":
setting_details["sensitive"] = "true"
setting_details["sensitive"] = True
reformatted_settings.append(setting_details)
if settings.get("required"):
settings_group_validation.append(settings.get("name"))
Expand Down

0 comments on commit 8a98e56

Please sign in to comment.