pull/496/head
Frostebite 2023-03-10 14:54:46 +00:00
parent 277a068b9f
commit 75ca4a723d
3 changed files with 2 additions and 1 deletions

View File

@ -56,6 +56,7 @@ class AWSTaskRunner {
};
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`);
}

View File

@ -16,6 +16,7 @@ export class RemoteClient {
public static async bootstrapRepository() {
CloudRunnerLogger.log(`t1`);
await CloudRunnerSystem.Run(`mkdir -p ${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.repoPathAbsolute)}`);
CloudRunnerLogger.log(`t1.5`);
await CloudRunnerSystem.Run(
`mkdir -p ${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.cacheFolderForCacheKeyFull)}`,
);

View File

@ -35,7 +35,6 @@ export class TaskParameterSerializer {
!TaskParameterSerializer.blocked.has(x.name) &&
x.value !== '' &&
x.value !== undefined &&
x.value !== false &&
x.name !== `CUSTOM_JOB` &&
x.name !== `GAMECI_CUSTOM_JOB` &&
x.value !== `undefined`,