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
I'm following the README and using docker-compose to set up gg and build mosh to test. I've faced two issues so far. At the end of this post is also the cloudformation template used to provision the S3 bucket and role. Any hints would be appreciated.
Issue number one (invocation failed; this is the one I care about most, it happened after issue number two below and some files had to be uploaded on the second call and a third call is pasted here):
Issue number two (gg gets stuck and has to be killed):
# gg force --jobs 1 --engine lambda src/frontend/mosh-server→ Loading the thunks... done (12 ms).↗ Uploading 515 files (50.7 MiB)... ^Cterminate called without an active exceptionAborted (core dumped)
#
gg got stuck there and I had to ^C to kill it. At this point exactly 500 files were present in the S3 bucket (out of 515). That's a suspiciously round number. I ran strace on the gg process before sending SIGINT, it was hanging on the futex call:
# strace -f -s1000 -p 357736strace: Process 357736 attached with 2 threads[pid 357736] futex(0x7fa804ff99d0, FUTEX_WAIT, 3385, NULL) = ? ERESTARTSYS (To be restarted if SA_RESTART is set)[pid 357736] --- SIGINT {si_signo=SIGINT, si_code=SI_KERNEL} ---[pid 357736] write(2, "terminate called without an active exception\n", 45) = 45[pid 357736] rt_sigprocmask(SIG_UNBLOCK, [ABRT], NULL, 8) = 0[pid 357736] rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], [HUP INT QUIT TERM CHLD CONT], 8) = 0[pid 357736] getpid() = 3363[pid 357736] gettid() = 3363[pid 357736] tgkill(3363, 3363, SIGABRT) = 0[pid 357736] rt_sigprocmask(SIG_SETMASK, [HUP INT QUIT TERM CHLD CONT], NULL, 8) = 0[pid 357736] --- SIGABRT {si_signo=SIGABRT, si_code=SI_TKILL, si_pid=3363, si_uid=0} ---[pid 357758] +++ killed by SIGABRT (core dumped) ++++++ killed by SIGABRT (core dumped) +++
#
This is a cloudformation template I used to set up the bucket and role:
Hi,
I'm following the README and using docker-compose to set up gg and build
mosh
to test. I've faced two issues so far. At the end of this post is also the cloudformation template used to provision the S3 bucket and role. Any hints would be appreciated.Issue number one (
invocation failed
; this is the one I care about most, it happened after issue number two below and some files had to be uploaded on the second call and a third call is pasted here):Issue number two (gg gets stuck and has to be killed):
gg got stuck there and I had to ^C to kill it. At this point exactly 500 files were present in the S3 bucket (out of 515). That's a suspiciously round number. I ran strace on the gg process before sending SIGINT, it was hanging on the futex call:
This is a cloudformation template I used to set up the bucket and role:
The text was updated successfully, but these errors were encountered: