We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee5dee7 commit 3637127Copy full SHA for 3637127
src/job_token.rs
@@ -39,7 +39,8 @@ pub(crate) struct JobTokenServer {
39
impl JobTokenServer {
40
pub(crate) fn new(client: Client) -> Result<Self, crate::Error> {
41
let (tx, rx) = mpsc::channel();
42
- // Initialize the
+ // Push the implicit token. Since JobTokens only give back what they got,
43
+ // there should be at most one global implicit token in the wild.
44
tx.send(None).unwrap();
45
let pool = tx.clone();
46
let helper = client.into_helper_thread(move |acq| {
0 commit comments