Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Pritesh Arora authored and Pritesh Arora committed Dec 5, 2024
1 parent d6043d0 commit 6c4dcfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/runtimes/podman_engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ type DefaultPodmanEngine struct{}
// InitializeMachine initializes our astro Podman machine.
func (e DefaultPodmanEngine) InitializeMachine(name string) error {
podmanMachineMemory := config.CFG.PodmanMEM.GetString()
podmanMachineCpu := config.CFG.PodmanCPU.GetString()
podmanMachineCPU := config.CFG.PodmanCPU.GetString()
podmanCmd := Command{
Command: podman,
Args: []string{"machine", "init", name, "--memory", podmanMachineMemory, "--cpus", podmanMachineCpu, "--now"},
Args: []string{"machine", "init", name, "--memory", podmanMachineMemory, "--cpus", podmanMachineCPU, "--now"},
}
output, err := podmanCmd.Execute()
if err != nil {
Expand Down

0 comments on commit 6c4dcfd

Please sign in to comment.