Skip to content

Commit

Permalink
Fix: incorrect redis url regex pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
tqwewe committed Dec 18, 2023
1 parent 930346b commit dc5b174
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions connector-schemas/redis/connection.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"type": "string",
"description": "The address of your Redis server",
"examples": ["redis://localhost:6379"],
"pattern": "^redis://[a-zA-Z0-9.]+:[0-9]+$"
"pattern": "^redis://.*$"
}
},
"additionalProperties": false,
Expand All @@ -36,7 +36,7 @@
"type": "string",
"title": "Address",
"examples": ["redis://localhost:6379"],
"pattern": "^redis://[a-zA-Z0-9.]+:[0-9]+$"
"pattern": "^redis://.*$"
}
}
},
Expand Down

0 comments on commit dc5b174

Please sign in to comment.