You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suffix Stripping is currently using strings.HasSuffix Function
The issue is in our environment as we push our applications the product that pushes our builds adds a suffix like [AppName]-new-build-XXXXXX-venerable so using the HasSuffix Function will only remove one piece. If we use a regex expression instead, we could be more dynamic in the removal.
Currently working to push a bosh dev release in our test environment with the straight 5.0.0 so we test what is there. We might try a pull request with regex instead or maybe be able to flip the two to get a better picture of the performance hit of each
Ok, we have the Dev release with the 5.0.0 Binary running matching this release in two environments. I was having a question on how would I get my forked Binary 5.0.1 into the logsearch-for-cloudfoundry release without you needing to merge it here first?
Suffix Stripping is currently using strings.HasSuffix Function
The issue is in our environment as we push our applications the product that pushes our builds adds a suffix like [AppName]-new-build-XXXXXX-venerable so using the HasSuffix Function will only remove one piece. If we use a regex expression instead, we could be more dynamic in the removal.
e824aae
The text was updated successfully, but these errors were encountered: