No capitalization in build ids for k8s
parent
b33e19aa34
commit
aaf15d9ad8
|
|
@ -1651,7 +1651,7 @@ exports.default = KubernetesStorage;
|
|||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
class RemoteBuilderConstants {
|
||||
}
|
||||
RemoteBuilderConstants.alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
||||
RemoteBuilderConstants.alphabet = '0123456789abcdefghijklmnopqrstuvwxyz';
|
||||
exports.default = RemoteBuilderConstants;
|
||||
|
||||
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
class RemoteBuilderConstants {
|
||||
static alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
||||
static alphabet = '0123456789abcdefghijklmnopqrstuvwxyz';
|
||||
}
|
||||
export default RemoteBuilderConstants;
|
||||
|
|
|
|||
Loading…
Reference in New Issue