Skip to content

Commit

Permalink
Merge pull request #536 from jnovy/retryable
Browse files Browse the repository at this point in the history
Avoid bogus journal filling errors
  • Loading branch information
jnovy authored Dec 11, 2024
2 parents 6bd3079 + 02c6ea6 commit aee638f
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,10 @@ void set_conmon_logs(char *level_name, char *cid_, gboolean syslog_, char *tag)
nexitf("No such log level %s", level_name);
}

#ifdef __FreeBSD__
static bool retryable_error(int err)
{
return err == EINTR || err == EAGAIN;
return err == EINTR || err == EAGAIN || err == ENOBUFS;
}
#else
static bool retryable_error(int err)
{
return err == EINTR;
}
#endif

static void get_signal_descriptor_mask(sigset_t *set)
{
Expand Down

3 comments on commit aee638f

@packit-as-a-service
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your git-forge project is not allowed to use the configured rhcontainerbot/podman-next Copr project.

Please, add this git-forge project github.com/containers/conmon to Packit allowed forge projectsin the Copr project settings.

@packit-as-a-service
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your git-forge project is not allowed to use the configured rhcontainerbot/podman-next Copr project.

Please, add this git-forge project github.com/containers/conmon to Packit allowed forge projectsin the Copr project settings.

@packit-as-a-service
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your git-forge project is not allowed to use the configured rhcontainerbot/podman-next Copr project.

Please, add this git-forge project github.com/containers/conmon to Packit allowed forge projectsin the Copr project settings.

Please sign in to comment.