fix
parent
277a068b9f
commit
75ca4a723d
|
|
@ -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`);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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)}`,
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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`,
|
||||
|
|
|
|||
Loading…
Reference in New Issue