Skip to content

Commit

Permalink
increase time for waiting for prompt after tools starts; has been racy
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kress committed Aug 2, 2022
1 parent 0f4504e commit ef6a6f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcip-tool.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ static bool switch_output(char *output, char *state)
char buffer[1000] = { 0 };

/* initialise the CLI, opens the socket and retrieves the prompt */
cli = m3_cli_initialise(M3_CLI_UDS_SOCKET, 100);
cli = m3_cli_initialise(M3_CLI_UDS_SOCKET, 300);
if (cli == NULL) {
printf("Failed to initialise CLI (%d): %s\n", errno, strerror(errno));
printf("Maybe the container has not been added to the \"Read/Write\" user group for access the CLI without authentication?");
Expand Down

0 comments on commit ef6a6f0

Please sign in to comment.