Skip to content

Commit

Permalink
SERVICE_AS_CONTROLLER is now enabled by default. Tests relying on the…
Browse files Browse the repository at this point in the history
… previous default behavior must explicitly set it to off.

(cherry picked from commit e982551)

# Conflicts:
#	dotnet/test/DotNetCoreUnitTest/appsettings.json
  • Loading branch information
claudiamurialdo committed Dec 11, 2024
1 parent 857d798 commit 2f6b73f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
"wcf:serviceHostingEnvironment:useClassicReadEntityBodyMode": "true",
"HTTP_PROTOCOL": "Unsecure",
"SAMESITE_COOKIE": "Lax",
"CACHE_INVALIDATION_TOKEN": "20216211291931"
"CACHE_INVALIDATION_TOKEN": "20216211291931",
"SERVICE_AS_CONTROLLER": "0"
},
"languages": {
"English": {
Expand Down
3 changes: 2 additions & 1 deletion dotnet/test/DotNetCoreAttackMitigationTest/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"CACHE_INVALIDATION_TOKEN": "20216211291931",
"CORS_ALLOW_ORIGIN": "https://normal-website.com",
"MY_CUSTOM_PTY": "DEFAULT_VALUE",
"CSRF_PROTECTION": "1"
"CSRF_PROTECTION": "1",
"SERVICE_AS_CONTROLLER": "0"
},
"languages": {
"English": {
Expand Down
3 changes: 2 additions & 1 deletion dotnet/test/DotNetCoreOpenTelemetryTest/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
"SAMESITE_COOKIE": "Lax",
"CACHE_INVALIDATION_TOKEN": "20216211291931",
"CORS_ALLOW_ORIGIN": "https://normal-website.com",
"MY_CUSTOM_PTY": "DEFAULT_VALUE"
"MY_CUSTOM_PTY": "DEFAULT_VALUE",
"SERVICE_AS_CONTROLLER": "0"
},
"languages": {
"English": {
Expand Down
3 changes: 2 additions & 1 deletion dotnet/test/DotNetCoreUnitTest/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
"CORS_ALLOW_ORIGIN": "https://normal-website.com",
"USE_JAYROCK": "0",
"HttpClientHttpVersion": "2.0",
"MY_CUSTOM_PTY": "DEFAULT_VALUE"
"MY_CUSTOM_PTY": "DEFAULT_VALUE",
"SERVICE_AS_CONTROLLER": "0"
},
"languages": {
"English": {
Expand Down
3 changes: 2 additions & 1 deletion dotnet/test/DotNetCoreWebUnitTest/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
"SAMESITE_COOKIE": "Lax",
"CACHE_INVALIDATION_TOKEN": "20216211291931",
"CORS_ALLOW_ORIGIN": "https://normal-website.com",
"MY_CUSTOM_PTY": "DEFAULT_VALUE"
"MY_CUSTOM_PTY": "DEFAULT_VALUE",
"SERVICE_AS_CONTROLLER": "0"
},
"languages": {
"English": {
Expand Down

0 comments on commit 2f6b73f

Please sign in to comment.