__watson
__watson
RRailway
Created by __watson on 8/8/2023 in #✋|help
Deploy from GitHub isn't showing all of my orgs even though it shows configured repos
I've also tried logging out and re-logging back in
9 replies
RRailway
Created by __watson on 8/8/2023 in #✋|help
Deploy from GitHub isn't showing all of my orgs even though it shows configured repos
https://backboard.railway.app/graphql/internal?q=getAvailableGitHubRepos ☝️ doesn't seem to return those repos anymore
9 replies
RRailway
Created by __watson on 8/8/2023 in #✋|help
Deploy from GitHub isn't showing all of my orgs even though it shows configured repos
9 replies
RRailway
Created by __watson on 8/8/2023 in #✋|help
Deploy from GitHub isn't showing all of my orgs even though it shows configured repos
teamId=6ab1d441-10ca-44ae-a30d-3cabda7e4fc7
9 replies
RRailway
Created by __watson on 7/18/2023 in #✋|help
Railway billing email isn’t working
Thanks @ngeloxyz for the quick response, everything is working fine and the demo went smooth. We're going to run through a production readiness check as our next steps and shipping the demo soon 🎉
18 replies
RRailway
Created by __watson on 7/18/2023 in #✋|help
Railway billing email isn’t working
Just forwarded the email, thanks @ngeloxyz
18 replies
RRailway
Created by __watson on 7/18/2023 in #✋|help
Railway billing email isn’t working
18 replies
RRailway
Created by __watson on 7/18/2023 in #✋|help
Railway billing email isn’t working
N/a
18 replies
RRailway
Created by __watson on 7/17/2023 in #✋|help
Pro billing - why 2 months charged at once?
7 replies
RRailway
Created by __watson on 7/17/2023 in #✋|help
Pro billing - why 2 months charged at once?
teamId=6ab1d441-10ca-44ae-a30d-3cabda7e4fc7
7 replies
RRailway
Created by __watson on 7/3/2023 in #✋|help
Private networking - webhook error
I at least have something more to investigate and I'll report back my findings end of day. I'm hoping to trim that code down into a small block I can reference and ideally delete in the future when y'all get to that point ❤️
61 replies
RRailway
Created by __watson on 7/3/2023 in #✋|help
Private networking - webhook error
ya good call, I will do that for sure
61 replies
RRailway
Created by __watson on 7/3/2023 in #✋|help
Private networking - webhook error
(but I might need to)
61 replies
RRailway
Created by __watson on 7/3/2023 in #✋|help
Private networking - webhook error
(which I don't set)
61 replies
RRailway
Created by __watson on 7/3/2023 in #✋|help
Private networking - webhook error
everything else listens on the $PORT environment variable
61 replies
RRailway
Created by __watson on 7/3/2023 in #✋|help
Private networking - webhook error
I do not, I just have hardcoded in the subgraph I'm testing that port hardcoded
61 replies
RRailway
Created by __watson on 7/3/2023 in #✋|help
Private networking - webhook error
This is now something else I need to look into that might not be railway, since this is the Apollo Router receiving a response from a downstream service and that is the actual gql response coming back
61 replies
RRailway
Created by __watson on 7/3/2023 in #✋|help
Private networking - webhook error
Okay there was some success in that, I get a response error:
{
"data": null,
"errors": [
{
"message": "HTTP fetch failed from 'playback': HTTP fetch failed from 'playback': 503: Service Unavailable",
"path": [],
"extensions": {
"code": "SUBREQUEST_HTTP_ERROR",
"service": "playback",
"reason": "HTTP fetch failed from 'playback': 503: Service Unavailable"
}
}
]
}
{
"data": null,
"errors": [
{
"message": "HTTP fetch failed from 'playback': HTTP fetch failed from 'playback': 503: Service Unavailable",
"path": [],
"extensions": {
"code": "SUBREQUEST_HTTP_ERROR",
"service": "playback",
"reason": "HTTP fetch failed from 'playback': 503: Service Unavailable"
}
}
]
}
61 replies
RRailway
Created by __watson on 7/3/2023 in #✋|help
Private networking - webhook error
const sleep = (ms: number) => new Promise((r) => setTimeout(r, ms));
await sleep(3000);

await new Promise((resolve) => {
const interval = setInterval(async () => {
try {
const result = await fetch(
`http://hosted-router.railway.internal:7718`
);
console.log(`Result: ${JSON.stringify(result)}`);
if (result) {
console.log(`Pass`);
resolve("foo");
clearInterval(interval);
}
} catch (err) {
console.log(JSON.stringify(err));
} finally {
await sleep(3000);
}
}, 1000);
});
const sleep = (ms: number) => new Promise((r) => setTimeout(r, ms));
await sleep(3000);

await new Promise((resolve) => {
const interval = setInterval(async () => {
try {
const result = await fetch(
`http://hosted-router.railway.internal:7718`
);
console.log(`Result: ${JSON.stringify(result)}`);
if (result) {
console.log(`Pass`);
resolve("foo");
clearInterval(interval);
}
} catch (err) {
console.log(JSON.stringify(err));
} finally {
await sleep(3000);
}
}, 1000);
});
👆 that's just in my code, it's a web server that is already started up before the request issue
61 replies
RRailway
Created by __watson on 7/3/2023 in #✋|help
Private networking - webhook error
Sorry I misunderstood and put the sleep before the timestamps, not in them. I'll change that
61 replies