You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running a flow with Composio, I get the following error:
[Errno 30] Read-only file system: '.composio.lock'
It's because Composio tries to write .composio.lock under /app but in securityContext we have readOnlyRootFilesystem: true which disables writing under /app if no volume is created.
If I modify the securityContext with readOnlyRootFilesystem: false then it works correctly. Maybe this should be the default else Composio doesn't work and other users may not know why.
The text was updated successfully, but these errors were encountered:
When running a flow with Composio, I get the following error:
[Errno 30] Read-only file system: '.composio.lock'
It's because Composio tries to write .composio.lock under /app but in securityContext we have readOnlyRootFilesystem: true which disables writing under /app if no volume is created.
If I modify the securityContext with readOnlyRootFilesystem: false then it works correctly. Maybe this should be the default else Composio doesn't work and other users may not know why.
The text was updated successfully, but these errors were encountered: