We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We use this flow to update the agent:
func() error { return syscall.Unlink(u.binaryPath) }, func() error { return os.Rename(b.Name(), u.binaryPath) },
Os.temp creates tmpfs :
tmpfs
df -T /tmp/go-build* | awk '{print $2}' | tail -n1 tmpfs
and agent is for sure not on tmpfs:
df -T /usr/local/bin/synpse | awk '{print $2}' | tail -n1 btrfs
This gives error:
invalid cross-device link
Solution: Move to byte level operation for agent move.
The text was updated successfully, but these errors were encountered:
ah yes, just need to read and write as bytes
Sorry, something went wrong.
😢 Fix soon will be there.
No branches or pull requests
We use this flow to update the agent:
Os.temp creates
tmpfs
:and agent is for sure not on
tmpfs
:This gives error:
Solution: Move to byte level operation for agent move.
The text was updated successfully, but these errors were encountered: