mirror of https://github.com/databricks/cli.git
acc: Prevent regex in test.toml from consuming too much (#2417)
The original regex can consume both lines and sometimes it does.
This commit is contained in:
parent
25a7e0a72b
commit
2c5b61538d
|
@ -2,8 +2,8 @@
|
|||
>>> errcode [CLI] bundle deploy
|
||||
Building whl1...
|
||||
Building whl2...
|
||||
Uploading [package name]
|
||||
Uploading [package name]
|
||||
Uploading [package name]...
|
||||
Uploading [package name]...
|
||||
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/unique_name_libraries/default/files...
|
||||
Deploying resources...
|
||||
Updating deployment state...
|
||||
|
|
|
@ -2,5 +2,5 @@ RecordRequests = false
|
|||
|
||||
# The order in which files are uploaded can be different, so we just replace the name
|
||||
[[Repls]]
|
||||
Old="Uploading .*-0.0.1-py3-none-any.whl..."
|
||||
Old="Uploading (my_package|my_other_package)-0.0.1-py3-none-any.whl"
|
||||
New="Uploading [package name]"
|
||||
|
|
Loading…
Reference in New Issue