Skip to content

Commit 67f7995

Browse files
committed
Stop using the actionAndCommand platform key extractor
This is only needed to support versions of Bazel below 4.1.0 (released on 2021-05-21). bb_browser isn't even capable of displaying platform properties stored in Command messages.
1 parent dcfd162 commit 67f7995

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bare/config/scheduler.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ local common = import 'common.libsonnet';
2222
killOperationsAuthorizer: { allow: {} },
2323
actionRouter: {
2424
simple: {
25-
platformKeyExtractor: { actionAndCommand: {} },
25+
platformKeyExtractor: { action: {} },
2626
invocationKeyExtractors: [
2727
{ correlatedInvocationsId: {} },
2828
{ toolInvocationId: {} },

docker-compose/config/scheduler.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ local common = import 'common.libsonnet';
2626
killOperationsAuthorizer: { allow: {} },
2727
actionRouter: {
2828
simple: {
29-
platformKeyExtractor: { actionAndCommand: {} },
29+
platformKeyExtractor: { action: {} },
3030
invocationKeyExtractors: [
3131
{ correlatedInvocationsId: {} },
3232
{ toolInvocationId: {} },

kubernetes/config/scheduler.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ local common = import 'common.libsonnet';
2626
killOperationsAuthorizer: { allow: {} },
2727
actionRouter: {
2828
simple: {
29-
platformKeyExtractor: { actionAndCommand: {} },
29+
platformKeyExtractor: { action: {} },
3030
invocationKeyExtractors: [
3131
{ correlatedInvocationsId: {} },
3232
{ toolInvocationId: {} },

0 commit comments

Comments
 (0)