Skip to content

Commit

Permalink
0.16.0: Minimal fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
flavienbwk committed Sep 12, 2024
1 parent 2121c30 commit 222d557
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions action/providers/scaleway.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ module.exports.handleScalewayProvider = async function(inputs) {
try {
containerEndpoint = await new Promise((resolve, reject) => {
const startTime = Date.now();
const timeout = 120000; // 2 minutes timeout
const timeout = 180000; // 3 minutes timeout
const interval = setInterval(async () => {
try {
// Update container variable with current status
Expand Down Expand Up @@ -165,7 +165,7 @@ module.exports.handleScalewayProvider = async function(inputs) {
try {
console.log('Checking settings endpoint...');
const startTime = Date.now();
const timeout = 30000; // 30 seconds timeout
const timeout = 60000; // 60 seconds timeout

while (Date.now() - startTime < timeout) {
try {
Expand Down
4 changes: 2 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28852,7 +28852,7 @@ module.exports.handleScalewayProvider = async function(inputs) {
try {
containerEndpoint = await new Promise((resolve, reject) => {
const startTime = Date.now();
const timeout = 120000; // 2 minutes timeout
const timeout = 180000; // 3 minutes timeout
const interval = setInterval(async () => {
try {
// Update container variable with current status
Expand Down Expand Up @@ -28882,7 +28882,7 @@ module.exports.handleScalewayProvider = async function(inputs) {
try {
console.log('Checking settings endpoint...');
const startTime = Date.now();
const timeout = 30000; // 30 seconds timeout
const timeout = 60000; // 60 seconds timeout

while (Date.now() - startTime < timeout) {
try {
Expand Down

0 comments on commit 222d557

Please sign in to comment.