Skip to content

Commit

Permalink
Disable FC logs that can degrade performance (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubno authored Jan 29, 2024
2 parents 4bf4a98 + 9b712a4 commit 28a1bc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/env-build-task-driver/internal/env/snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ func (s *Snapshot) configureFC(ctx context.Context, tracer trace.Tracer) error {
defer childSpan.End()

ip := fmt.Sprintf("%s::%s:%s:instance:eth0:off:8.8.8.8", fcAddr, fcTapAddress, fcMaskLong)
kernelArgs := fmt.Sprintf("console=ttyS0 ip=%s reboot=k panic=1 pci=off nomodules i8042.nokbd i8042.noaux ipv6.disable=1 random.trust_cpu=on", ip)
kernelArgs := fmt.Sprintf("quiet loglevel=1 ip=%s reboot=k panic=1 pci=off nomodules i8042.nokbd i8042.noaux ipv6.disable=1 random.trust_cpu=on", ip)
kernelImagePath := s.env.KernelImagePath
bootSourceConfig := operations.PutGuestBootSourceParams{
Context: childCtx,
Expand Down

0 comments on commit 28a1bc6

Please sign in to comment.