Skip to content

Commit

Permalink
chore: remove rust (#3279)
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas authored Oct 31, 2024
1 parent 5d57552 commit 74bfd95
Show file tree
Hide file tree
Showing 30 changed files with 6 additions and 4,474 deletions.
1 change: 0 additions & 1 deletion .go-arch-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ components:
ftl-cmd: { in: frontend/cli/ftl/** }
go-runtime: { in: go-runtime/** }
jvm-runtime: { in: jvm-runtime/** }
rust-runtime: { in: rust-runtime/** }
runner: { in: backend/runner/** }
ftl-runner-cmd: { in: cmd/ftl-runner/** }
frontend: { in: frontend/console/** }
Expand Down
1 change: 0 additions & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
# Below are team-specific overrides. These should supercede the default ftl-reviewers team.
frontend/ @TBD54566975/ftl-frontend-team
pnpm-* @TBD54566975/ftl-frontend-team
rust-runtime/ @gak
go-runtime/ @TBD54566975/ftl-go-team
jvm-runtime/ @TBD54566975/ftl-jvm-team
deployment/ @TBD54566975/ftl-infra-team
2 changes: 1 addition & 1 deletion backend/controller/scaling/localscaling/local_scaling.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ func (l *localScaling) startRunner(ctx context.Context, deploymentKey string, in
simpleName := fmt.Sprintf("runner%d", keySuffix)
if err := kong.ApplyDefaults(&config, kong.Vars{
"deploymentdir": filepath.Join(l.cacheDir, "ftl-runner", simpleName, "deployments"),
"language": "go,kotlin,rust,java",
"language": "go,kotlin,java",
}); err != nil {
return fmt.Errorf("failed to apply defaults: %w", err)
}
Expand Down
2 changes: 1 addition & 1 deletion backend/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ type Config struct {
TemplateDir string `help:"Template directory to copy into each deployment, if any." type:"existingdir"`
DeploymentDir string `help:"Directory to store deployments in." default:"${deploymentdir}"`
DeploymentKeepHistory int `help:"Number of deployments to keep history for." default:"3"`
Language []string `short:"l" help:"Languages the runner supports." env:"FTL_LANGUAGE" default:"go,kotlin,rust,java"`
Language []string `short:"l" help:"Languages the runner supports." env:"FTL_LANGUAGE" default:"go,kotlin,java"`
HeartbeatPeriod time.Duration `help:"Minimum period between heartbeats." default:"3s"`
HeartbeatJitter time.Duration `help:"Jitter to add to heartbeat period." default:"2s"`
Deployment string `help:"The deployment this runner is for." env:"FTL_DEPLOYMENT"`
Expand Down
Loading

0 comments on commit 74bfd95

Please sign in to comment.