File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed
Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
33
4+ ## [ 5.103.0] - 2025-04-15
5+
6+ ### Added
7+
8+ - ` None ` Nothing Added
9+
10+ ### Changed
11+
12+ - ` Enhanced ` The submit* () methods of the HTTP Access Method (for Viya) include a GETstatusDelay= option for delaying the
13+ HTTP calls to see if the code is finished, which happen in a loop until done. Once done the LOG and LST can then be retrieved.
14+ This was implemented as a sleep() call in the loop checking the status. I've found that the API call can take a wait= value such
15+ that it is a synchronous call with a timeout. I've changed to provide the GETstatusDelay value to the API call instead of being a
16+ sleep delay in the python code. This will improve this loop by eliminating excessive calls while at the same time being more
17+ performant since wait= will return as soon as the job finishes, while sleep will sleep that whole time before making another
18+ status call. I've changed the default value of GETstatusDelay from 0 to 30 seconds to take advantage of this functionality, so
19+ it will be used by default. GETstatusDelay is no longer required to eliminate excessive http status calls, while returning as soon
20+ as the code finishes.
21+
22+ ### Fixed
23+
24+ - ` None ` Nothing Fixed
25+
26+ ### Removed
27+
28+ - ` None ` Nothing removed
29+
30+
31+
432## [ 5.102.2] - 2025-03-27
533
634### Added
Original file line number Diff line number Diff line change 1- __version__ = '5.102.2 '
1+ __version__ = '5.103.0 '
You can’t perform that action at this time.
0 commit comments