Skip to content

Commit

Permalink
Merge pull request #56 from smartcontractkit/chore/simple-passwords-a…
Browse files Browse the repository at this point in the history
…nnouncement

BCF-2591-allow-simple-passwords: reverting notification
  • Loading branch information
jmank88 authored Sep 26, 2023
2 parents ed9e98b + d41b999 commit a8fbbb3
Showing 2 changed files with 5 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .changeset/shy-moose-walk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@smartcontractkit/operator-ui': patch
---

Removing notification for AllowSimplePasswords breaking change
Original file line number Diff line number Diff line change
@@ -68,16 +68,6 @@ const TOMLPanel = ({ loading, toml, error = '', title, expanded }: Props) => {
)
}

const AllowSimplePasswordsNotification = () => {
const allowSimplePasswordsNotification =
'Starting in 2.6.0, chainlink nodes will no longer AllowSimplePasswords=true for production builds. Any TOML configuration that sets the following line will fail validation checks in `node start` or `node validate`.'
return (
<Card>
<CardHeader title={<>{allowSimplePasswordsNotification}</>} />
</Card>
)
}

export const ConfigurationV2Card = () => {
const { data, loading, error } = useQuery<
FetchConfigV2,
@@ -92,7 +82,6 @@ export const ConfigurationV2Card = () => {
<Grid item xs={12}>
<Card>
<CardHeader title="TOML Configuration" />
<AllowSimplePasswordsNotification />
<TOMLPanel
title="V2 config dump:"
error={error?.message}
@@ -111,7 +100,6 @@ export const ConfigurationV2Card = () => {
<Grid item xs={12}>
<Card>
<CardHeader title="TOML Configuration" />
<AllowSimplePasswordsNotification />
<TOMLPanel
title="User specified:"
error={error?.message}

0 comments on commit a8fbbb3

Please sign in to comment.