Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gajus/planton
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.1.0
Choose a base ref
...
head repository: gajus/planton
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.2.0
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Dec 10, 2020

  1. feat: expose taskName

    gajus committed Dec 10, 2020
    Copy the full SHA
    cf6f377 View commit details
Showing with 3 additions and 0 deletions.
  1. +1 −0 README.md
  2. +2 −0 src/factories/createPlanton.ts
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -43,6 +43,7 @@ type ScheduleConfiguration = {
readonly activeTaskInstructions: TaskInstruction[];
readonly concurrency: number;
readonly limit: number;
readonly taskName: string;
};

/**
2 changes: 2 additions & 0 deletions src/factories/createPlanton.ts
Original file line number Diff line number Diff line change
@@ -44,6 +44,7 @@ type ScheduleConfiguration = {
readonly activeTaskInstructions: TaskInstruction[];
readonly concurrency: number;
readonly limit: number;
readonly taskName: string;
};

/**
@@ -224,6 +225,7 @@ const createPlanton = (configuration: PlantonConfiguration): Planton => {
activeTaskInstructions,
concurrency,
limit,
taskName,
});
} catch (error) {
log.error({