fix
parent
277a068b9f
commit
75ca4a723d
|
|
@ -56,6 +56,7 @@ class AWSTaskRunner {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (JSON.stringify(runParameters.overrides.containerOverrides).length > 8192) {
|
if (JSON.stringify(runParameters.overrides.containerOverrides).length > 8192) {
|
||||||
|
CloudRunnerLogger.log(JSON.stringify(runParameters.overrides.containerOverrides, undefined, 4));
|
||||||
throw new Error(`Container Overrides length must be at most 8192`);
|
throw new Error(`Container Overrides length must be at most 8192`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ export class RemoteClient {
|
||||||
public static async bootstrapRepository() {
|
public static async bootstrapRepository() {
|
||||||
CloudRunnerLogger.log(`t1`);
|
CloudRunnerLogger.log(`t1`);
|
||||||
await CloudRunnerSystem.Run(`mkdir -p ${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.repoPathAbsolute)}`);
|
await CloudRunnerSystem.Run(`mkdir -p ${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.repoPathAbsolute)}`);
|
||||||
|
CloudRunnerLogger.log(`t1.5`);
|
||||||
await CloudRunnerSystem.Run(
|
await CloudRunnerSystem.Run(
|
||||||
`mkdir -p ${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.cacheFolderForCacheKeyFull)}`,
|
`mkdir -p ${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.cacheFolderForCacheKeyFull)}`,
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,6 @@ export class TaskParameterSerializer {
|
||||||
!TaskParameterSerializer.blocked.has(x.name) &&
|
!TaskParameterSerializer.blocked.has(x.name) &&
|
||||||
x.value !== '' &&
|
x.value !== '' &&
|
||||||
x.value !== undefined &&
|
x.value !== undefined &&
|
||||||
x.value !== false &&
|
|
||||||
x.name !== `CUSTOM_JOB` &&
|
x.name !== `CUSTOM_JOB` &&
|
||||||
x.name !== `GAMECI_CUSTOM_JOB` &&
|
x.name !== `GAMECI_CUSTOM_JOB` &&
|
||||||
x.value !== `undefined`,
|
x.value !== `undefined`,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue