Skip to content

Commit

Permalink
Remove env token from DI PII lists in each tracer app
Browse files Browse the repository at this point in the history
This has already been removed in the PII test file in the following PR:

    #3827
  • Loading branch information
watson committed Jan 16, 2025
1 parent ccaab35 commit 02f24f8
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion utils/build/docker/dotnet/weblog/Models/Debugger/Pii.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ public class Pii : PiiBase
public string? dburl { get; set; } = PiiBase.Value;
public string? encryptionkey { get; set; } = PiiBase.Value;
public string? encryptionkeyid { get; set; } = PiiBase.Value;
public string? env { get; set; } = PiiBase.Value;
public string? geolocation { get; set; } = PiiBase.Value;
public string? gpgkey { get; set; } = PiiBase.Value;
public string? ipaddress { get; set; } = PiiBase.Value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public class Pii extends PiiBase {
public String dburl = VALUE;
public String encryptionkey = VALUE;
public String encryptionkeyid = VALUE;
public String env = VALUE;
public String geolocation = VALUE;
public String gpgkey = VALUE;
public String ipaddress = VALUE;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public class Pii extends PiiBase {
public String dburl = VALUE;
public String encryptionkey = VALUE;
public String encryptionkeyid = VALUE;
public String env = VALUE;
public String geolocation = VALUE;
public String gpgkey = VALUE;
public String ipaddress = VALUE;
Expand Down
1 change: 0 additions & 1 deletion utils/build/docker/python/flask/debugger/pii.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def __init__(self):
self.dburl = self.VALUE
self.encryptionkey = self.VALUE
self.encryptionkeyid = self.VALUE
self.env = self.VALUE
self.geolocation = self.VALUE
self.gpgkey = self.VALUE
self.ipaddress = self.VALUE
Expand Down
1 change: 0 additions & 1 deletion utils/build/docker/ruby/rails70/app/models/pii.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"dburl",
"encryptionkey",
"encryptionkeyid",
"env",
"geolocation",
"gpgkey",
"ipaddress",
Expand Down

0 comments on commit 02f24f8

Please sign in to comment.