Skip to content

Commit

Permalink
Bump DAP requests timeout to 5 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
rsubtil committed Oct 3, 2024
1 parent 0d098d3 commit 9dd7a8a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion editor/debugger/debug_adapter/debug_adapter_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

#include "debug_adapter_parser.h"

#include "core/variant/variant.h"
#include "editor/debugger/debug_adapter/debug_adapter_types.h"
#include "editor/debugger/editor_debugger_node.h"
#include "editor/debugger/script_editor_debugger.h"
Expand Down
3 changes: 1 addition & 2 deletions editor/debugger/debug_adapter/debug_adapter_protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
#include "core/io/stream_peer_tcp.h"
#include "core/io/tcp_server.h"

#include "core/object/object_id.h"
#include "debug_adapter_parser.h"
#include "debug_adapter_types.h"
#include "scene/debugger/scene_debugger.h"
Expand Down Expand Up @@ -117,7 +116,7 @@ class DebugAdapterProtocol : public Object {
bool _processing_stackdump = false;
int _remaining_vars = 0;
int _current_frame = 0;
uint64_t _request_timeout = 1000;
uint64_t _request_timeout = 5000;
bool _sync_breakpoints = false;

String _current_request;
Expand Down

0 comments on commit 9dd7a8a

Please sign in to comment.