fix: replace instances of 127.0.0.1 to localhost (#8536)
* Replace instances of 127.0.0.1 to localhost * fix some replace-all issues * fix some replace-all issues * update starterprojects * Upgrade uvlock
This commit is contained in:
parent
5c38d0223d
commit
b77351331d
33 changed files with 3959 additions and 5686 deletions
|
|
@ -15,9 +15,9 @@ from langflow.utils import util_strings
|
|||
("mysql://user:pass@localhost/dbname", True),
|
||||
("mysql+mysqldb://scott:tiger@localhost/foo", True),
|
||||
("mysql+pymysql://scott:tiger@localhost/foo", True),
|
||||
("oracle://scott:tiger@127.0.0.1:1521/?service_name=freepdb1", True),
|
||||
("oracle://scott:tiger@localhost:1521/?service_name=freepdb1", True),
|
||||
("oracle+cx_oracle://scott:tiger@tnsalias", True),
|
||||
("oracle+oracledb://scott:tiger@127.0.0.1:1521/?service_name=freepdb1", True),
|
||||
("oracle+oracledb://scott:tiger@localhost:1521/?service_name=freepdb1", True),
|
||||
("", False),
|
||||
(" invalid ", False),
|
||||
("not_a_url", False),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue