Newer
Older
#ifndef _CLI_COMMAND_RESULT_H_
#define _CLI_COMMAND_RESULT_H_
namespace cli {
enum class CommandResult {
OK,
QUIT,
EXCEPTION,
ERROR,
EOT
};
} /* namespace cli */
#endif /* _CLI_COMMAND_RESULT_H_ */
From 1. 4., DockerHub introduces new very strict rate limitations on docker image pulls.
Consider changing FROM tags in dockerfiles to use altenative providers or add login step at the beginning of CI/CD job as authenticated requests aren't affected.
#ifndef _CLI_COMMAND_RESULT_H_
#define _CLI_COMMAND_RESULT_H_
namespace cli {
enum class CommandResult {
OK,
QUIT,
EXCEPTION,
ERROR,
EOT
};
} /* namespace cli */
#endif /* _CLI_COMMAND_RESULT_H_ */