Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions libs/getsentry.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/

{
group_order: ['s4s2', 'de', 'us', 'control', 'prod-control', 'snty-tools', 'st'],
group_order: ['s4s2', 'de', 'us', 'control', 'snty-tools', 'st'],
// Empty for now — add future test groups here
test_group_order: [],
// These groupings consist of user facing deployments
Expand All @@ -12,7 +12,6 @@
de: ['de'],
us: ['us'],
control: ['control'],
'prod-control': ['prod-control'],
'snty-tools': ['snty-tools'],
st: ['customer-1', 'customer-2', 'customer-7'],
},
Expand Down
2 changes: 1 addition & 1 deletion libs/pipedream.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ local is_autodeploy(pipedream_config) =
!std.objectHas(pipedream_config, 'auto_deploy') || pipedream_config.auto_deploy == true;

// Regions that are excluded by default and must be explicitly included
local default_excluded_regions = ['control', 'prod-control', 'snty-tools'];
local default_excluded_regions = ['control', 'snty-tools'];

local is_excluded_region = function(region, config)
std.objectHas(config, 'exclude_regions') && std.length(std.find(region, config.exclude_regions)) > 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
"de": [
"de"
],
"prod-control": [
"prod-control"
],
"s4s2": [
"s4s2"
],
Expand All @@ -29,7 +26,6 @@
"de",
"us",
"control",
"prod-control",
"snty-tools",
"st"
]
Expand Down
Loading