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
The decision logger is trimming the query prefix using strings.TrimLeft which expects a set of characters to remove. As a result, it's stripping all leading characters in "data." instead of just the string prefix "data.".
The text was updated successfully, but these errors were encountered:
The decision logger was using strings.TrimLeft when it should have been
using strings.TrimPrefix. As a result, the prefix was not being trimmed
correctly--leading characters in the cutset "data." were being removed.
Fixesopen-policy-agent#783
Signed-off-by: Torin Sandall <torinsandall@gmail.com>
The decision logger was using strings.TrimLeft when it should have been
using strings.TrimPrefix. As a result, the prefix was not being trimmed
correctly--leading characters in the cutset "data." were being removed.
Fixes#783
Signed-off-by: Torin Sandall <torinsandall@gmail.com>
The decision logger is trimming the query prefix using strings.TrimLeft which expects a set of characters to remove. As a result, it's stripping all leading characters in
"data."
instead of just the string prefix"data."
.The text was updated successfully, but these errors were encountered: