Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion cmd/cli/cleanup_scenario.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/google/uuid"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/loadgen"
"go.temporal.io/api/batch/v1"
"go.temporal.io/api/enums/v1"
Expand Down
2 changes: 1 addition & 1 deletion cmd/cli/prepare_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/workers"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/cli/run_scenario.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/loadgen"
"go.temporal.io/sdk/client"
"go.uber.org/zap"
Expand Down
2 changes: 1 addition & 1 deletion cmd/cli/run_scenario_with_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/workers"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/dev/build_helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/spf13/pflag"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"go.uber.org/zap"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/dev/build_worker_image.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"golang.org/x/mod/semver"
)

Expand Down
1 change: 1 addition & 0 deletions dockerfiles/cli.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ENV PATH="$PATH:/root/.cargo/bin"

# Copy CLI build dependencies
COPY cmd ./cmd
COPY clioptions ./clioptions
COPY loadgen ./loadgen
COPY metrics ./metrics
COPY scenarios ./scenarios
Expand Down
1 change: 1 addition & 0 deletions dockerfiles/dotnet.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ WORKDIR /app

# Copy CLI build dependencies
COPY cmd ./cmd
COPY clioptions ./clioptions
COPY loadgen ./loadgen
COPY scenarios ./scenarios
COPY metrics ./metrics
Expand Down
1 change: 1 addition & 0 deletions dockerfiles/go.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ WORKDIR /app

# Copy CLI build dependencies
COPY cmd ./cmd
COPY clioptions ./clioptions
COPY loadgen ./loadgen
COPY scenarios ./scenarios
COPY metrics ./metrics
Expand Down
1 change: 1 addition & 0 deletions dockerfiles/java.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ WORKDIR /app

# Copy CLI build dependencies
COPY cmd ./cmd
COPY clioptions ./clioptions
COPY loadgen ./loadgen
COPY metrics ./metrics
COPY scenarios ./scenarios
Expand Down
1 change: 1 addition & 0 deletions dockerfiles/python.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ WORKDIR /app

# Copy CLI build dependencies
COPY cmd ./cmd
COPY clioptions ./clioptions
COPY loadgen ./loadgen
COPY scenarios ./scenarios
COPY metrics ./metrics
Expand Down
1 change: 1 addition & 0 deletions dockerfiles/ruby.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ WORKDIR /app

# Copy CLI build dependencies
COPY cmd ./cmd
COPY clioptions ./clioptions
COPY loadgen ./loadgen
COPY scenarios ./scenarios
COPY metrics ./metrics
Expand Down
1 change: 1 addition & 0 deletions dockerfiles/typescript.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ WORKDIR /app

# Copy CLI build dependencies
COPY cmd ./cmd
COPY clioptions ./clioptions
COPY loadgen ./loadgen
COPY scenarios ./scenarios
COPY metrics ./metrics
Expand Down
2 changes: 1 addition & 1 deletion loadgen/kitchen_sink_executor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"time"

"github.com/stretchr/testify/require"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
. "github.com/temporalio/omes/loadgen"
. "github.com/temporalio/omes/loadgen/kitchensink"
. "github.com/temporalio/omes/workers"
Expand Down
2 changes: 1 addition & 1 deletion loadgen/scenario.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"go.temporal.io/sdk/temporal"
"go.uber.org/zap"

"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/loadgen/kitchensink"
)

Expand Down
2 changes: 1 addition & 1 deletion scenarios/ebb_and_flow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/stretchr/testify/require"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/loadgen"
"github.com/temporalio/omes/workers"
)
Expand Down
2 changes: 1 addition & 1 deletion scenarios/project/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"

"github.com/temporalio/features/sdkbuild"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/workers"
"go.uber.org/zap"
)
Expand Down
2 changes: 1 addition & 1 deletion scenarios/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"time"

"github.com/temporalio/features/sdkbuild"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/loadgen"
api "github.com/temporalio/omes/workers/go/harness/api"
"go.uber.org/zap"
Expand Down
2 changes: 1 addition & 1 deletion scenarios/project/project_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/stretchr/testify/require"
"github.com/temporalio/features/sdkbuild"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/devserver"
"github.com/temporalio/omes/loadgen"
"github.com/temporalio/omes/versions"
Expand Down
2 changes: 1 addition & 1 deletion scenarios/serverless_burst_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"

"github.com/stretchr/testify/require"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/loadgen"
"github.com/temporalio/omes/workers"
)
Expand Down
2 changes: 1 addition & 1 deletion scenarios/throughput_stress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/stretchr/testify/require"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/loadgen"
"github.com/temporalio/omes/workers"
)
Expand Down
2 changes: 1 addition & 1 deletion workers/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"

"github.com/temporalio/features/sdkbuild"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"go.uber.org/zap"
)

Expand Down
2 changes: 1 addition & 1 deletion workers/go/apps/lambda/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
awsconfig "github.com/aws/aws-sdk-go-v2/config"
"github.com/aws/aws-sdk-go-v2/service/secretsmanager"
"github.com/nexus-rpc/sdk-go/nexus"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/workers/go/harness"
"github.com/temporalio/omes/workers/go/workerlib/ebbandflow"
"github.com/temporalio/omes/workers/go/workerlib/kitchensink"
Expand Down
2 changes: 1 addition & 1 deletion workers/go/apps/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"

"github.com/spf13/pflag"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/workers/go/apps/lambda"
"github.com/temporalio/omes/workers/go/apps/worker"
"github.com/temporalio/omes/workers/go/harness"
Expand Down
2 changes: 1 addition & 1 deletion workers/go/apps/worker/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/nexus-rpc/sdk-go/nexus"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/workers/go/harness"
"github.com/temporalio/omes/workers/go/workerlib/ebbandflow"
"github.com/temporalio/omes/workers/go/workerlib/kitchensink"
Expand Down
2 changes: 1 addition & 1 deletion workers/go/harness/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/metrics"
sdkclient "go.temporal.io/sdk/client"
"go.uber.org/zap"
Expand Down
2 changes: 1 addition & 1 deletion workers/go/harness/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"syscall"

"github.com/spf13/pflag"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
sdkclient "go.temporal.io/sdk/client"
sdkworker "go.temporal.io/sdk/worker"
"go.temporal.io/sdk/workflow"
Expand Down
2 changes: 1 addition & 1 deletion workers/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

"github.com/spf13/pflag"
"github.com/temporalio/features/sdkbuild"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"go.temporal.io/sdk/client"
"go.temporal.io/sdk/testsuite"
)
Expand Down
2 changes: 1 addition & 1 deletion workers/test_env.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

"github.com/google/uuid"
"github.com/stretchr/testify/require"
"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/devserver"
"github.com/temporalio/omes/loadgen"
"github.com/temporalio/omes/versions"
Expand Down
2 changes: 1 addition & 1 deletion workers/test_workers.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"
"testing"

"github.com/temporalio/omes/cmd/clioptions"
"github.com/temporalio/omes/clioptions"
"github.com/temporalio/omes/loadgen"
"go.uber.org/zap"
)
Expand Down
Loading