Skip to content

Commit

Permalink
feat(local): increase default ws timeout to 60 sec (#190)
Browse files Browse the repository at this point in the history
* feat(local): increase default ws timeout to 60 sec

* nix: update flake
  • Loading branch information
jost-s authored Nov 1, 2023
1 parent fa52e84 commit 7b45ac5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
### Added
### Removed
### Changed
- Local: Increase default timeout for websocket calls to 60 seconds.
### Fixed

## 2023-10-04: v0.15.1
Expand Down
30 changes: 15 additions & 15 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ts/src/local/conductor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { AgentsAppsOptions, AppOptions, IConductor } from "../types.js";
const logger = makeLogger("Local Conductor");

const HOST_URL = new URL("ws://127.0.0.1");
const DEFAULT_TIMEOUT = 15000;
const DEFAULT_TIMEOUT = 60000;
const LAIR_PASSWORD = "lair-password";

/**
Expand Down

0 comments on commit 7b45ac5

Please sign in to comment.