(cause: Cause.Cause<unknown>)
| 315 | Scope.close(attemptScope, Exit.void).pipe(Effect.forkIn(scope, { startImmediately: true }), Effect.asVoid) |
| 316 | |
| 317 | const message = (cause: Cause.Cause<unknown>) => { |
| 318 | const error = Cause.squash(cause) |
| 319 | return error instanceof Error ? error.message : String(error) |
| 320 | } |
| 321 | |
| 322 | const settle = Effect.fnUntraced(function* (attemptID: AttemptID, exit: Exit.Exit<Credential.OAuth, unknown>) { |
| 323 | const now = yield* Clock.currentTimeMillis |