Skip to content

2.3.0

Compare
Choose a tag to compare
@mab4058 mab4058 released this 16 Jul 21:18
· 41 commits to master since this release

Config File

  • Added a config file that will be auto-created upon next import.
{
	"general": {
		"max_threads": 32
	},
	"requests": {
		"retries": 3,
		"timeout": 5,
		"ssl_verify": true
	},
	"session": {
		"token_expiration_threshold": 60
	}
}
  • token_expiration_threshold is minutes.

Other Improvements

  • Logging can be turned on with a call to helios.add_stderr_logger()
    • This allows the user to define custom logging schemes without conflict.
  • Various bug fixes and stability improvements.
    • Fixed situation where an extra forward slash was being generated in API URLs. On some systems this caused network exceptions.