mirror of https://github.com/certd/certd
refactor: logs
parent
909b75eb40
commit
146ac49703
|
@ -22,6 +22,7 @@ export class Executor {
|
||||||
this.onChanged = options.onChanged;
|
this.onChanged = options.onChanged;
|
||||||
this.accessService = options.accessService;
|
this.accessService = options.accessService;
|
||||||
this.userId = options.userId;
|
this.userId = options.userId;
|
||||||
|
this.pipeline.userId = this.userId;
|
||||||
this.contextFactory = new ContextFactory(options.storage);
|
this.contextFactory = new ContextFactory(options.storage);
|
||||||
this.logger = logger;
|
this.logger = logger;
|
||||||
this.pipelineContext = this.contextFactory.getContext("pipeline", this.pipeline.id);
|
this.pipelineContext = this.contextFactory.getContext("pipeline", this.pipeline.id);
|
||||||
|
|
|
@ -64,6 +64,7 @@ export type Runnable = {
|
||||||
|
|
||||||
export type Pipeline = Runnable & {
|
export type Pipeline = Runnable & {
|
||||||
version?: number;
|
version?: number;
|
||||||
|
userId: any;
|
||||||
stages: Stage[];
|
stages: Stage[];
|
||||||
triggers: Trigger[];
|
triggers: Trigger[];
|
||||||
};
|
};
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 51dd77563b83ccc541067037e1125dcd8e46f7da
|
Subproject commit f7d9e45c8abb051e8cd8388618e694f8757cb15e
|
|
@ -1 +1 @@
|
||||||
Subproject commit 1f108c8ee8d455eb9d99cd9131bf5bdc474efc0a
|
Subproject commit 60695c23553c28a4bb710f55e1a56e623d7fafd3
|
Loading…
Reference in New Issue