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
// server.js// npm i express is neededconstexpress=require('express');constapp=express();constPORT=3000;app.get('*',(req,res)=>{res.status(301).send('Moved Permanently');});app.listen(PORT,()=>{console.log(`Server is running and listening on port ${PORT}`);console.log('Responding with 301 status code to all requests.');});
Description
With the above configuration, Artillery does not exit after the test has completed. DEBUG is http. I am left with this output:
Artillery does not log any futher information after this and runs indefinitely. The cursor is spinning. Since I do not control the web service I am testing, I have no influence on how redirects are handled.
The text was updated successfully, but these errors were encountered:
Version info:
Running this command:
Description
With the above configuration, Artillery does not exit after the test has completed.
DEBUG
ishttp
. I am left with this output:Artillery does not log any futher information after this and runs indefinitely. The cursor is spinning. Since I do not control the web service I am testing, I have no influence on how redirects are handled.
The text was updated successfully, but these errors were encountered: