============================= test session starts ==============================
platform linux -- Python 3.12.9, pytest-7.4.4, pluggy-1.5.0
rootdir: /home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test
configfile: pkg:library.python.pytest:pytest.yatest.ini
plugins: typeguard-2.13.3
collected 16 items

test_http_api.py ......FFFFFFFFF.E

==================================== ERRORS ====================================
______________ ERROR at teardown of TestHttpApi.test_openapi_spec ______________
../../../../../../environment/arcadia/ydb/tests/fq/http_api/test_base.py:24: in teardown_class
    cls.streaming_over_kikimr.stop()
ydb/tests/tools/fq_runner/kikimr_runner.py:736: in stop
    tenant.stop()
ydb/tests/tools/fq_runner/kikimr_runner.py:62: in stop
    self.kikimr_cluster.stop(kill=False)
ydb/tests/library/harness/kikimr_runner.py:577: in stop
    raise daemon.SeveralDaemonErrors(saved_exceptions)
E   ydb.tests.library.harness.daemon.SeveralDaemonErrors: Daemon failed with message: Unexpectedly finished before stop.
E   Process exit_code = -6.
E   Stdout file name: 
E   /home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stdout
E   Stderr file name: 
E   /home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stderr
E   Stderr content:
E   
E   GRpc memory quota was set but disabled due to issues with grpc quoter, to enable it use EnableGRpcMemoryQuota option
E   :GRPC_LIBRARY ERROR: no server name supplied in dns URI
E   :GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
E   VERIFY failed (2025-11-04T16:23:37.957333Z): FinishStateFunc: unexpected message type 0x7ff00000
E   ydb/core/fq/libs/actors/run_actor.cpp:455
E   FinishStateFunc(): requirement false failed
E   :GRPC_LIBRARY ERROR: no server name supplied in dns URI
E   :GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
E   0. /-S/util/system/yassert.cpp:83: InternalPanicImpl @ 0xA304FF5
E   1. /-S/util/system/yassert.cpp:55: Panic @ 0xA2FE866
E   2. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:438: FinishStateFunc @ 0x1B541073
E   3. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:415: ?? @ 0x1B5401BD
E   4. /-S/ydb/library/actors/core/actor.h:853: State @ 0x1B4CCD10
E   5. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:268: Execute @ 0xB067D2B
E   6. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:457: operator() @ 0xB06BA12
E   7. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:509: ProcessExecutorPool @ 0xB06B5E0
E   8. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:535: ThreadProc @ 0xB06C26A
E   9. /-S/util/system/thread.cpp:244: ThreadProxy @ 0xA3096DC
E   10. ??:0: ?? @ 0x7F89BB459AC2
E   11. ??:0: ?? @ 0x7F89BB4EB8BF
------------------------------ Captured log setup ------------------------------
INFO     ya.test:ya.py:418 ####################################################################################################
INFO     ya.test:ya.py:419 test_openapi_spec
INFO     ya.test:ya.py:420 ####################################################################################################
INFO     ya.test:ya.py:421 Test setup
------------------------------ Captured log call -------------------------------
INFO     ya.test:ya.py:434 Test call (class_name: test_http_api.py::TestHttpApi, test_name: test_openapi_spec)
DEBUG    root:http_client.py:104 Response: 200, openapi: 3.0.0
x-stoplight:
  id: 3x2f5e2eqgpny
info:
  title: yq
  version: '1.0'
servers:
  - url: 'https://api.yandex-query.cloud.yandex.net/api/fq/v1'
paths:
  /queries:
    post:
      summary: create new query
      operationId: create-query
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                required:
                  - id
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericError'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  maxLength: 1024
                  default: human readable default name
                type:
                  type: string
                  enum:
                    - ANALYTICS
                    - STREAMING
                  default: ANALYTICS
                text:
                  type: string
                  maxLength: 100000
                  minLength: 1
                description:
                  type: string
                  default: ''
              required:
                - text
      parameters:
        - $ref: '#/components/parameters/Idempotency-Key'
        - $ref: '#/components/parameters/Authorization'
        - $ref: '#/components/parameters/x-request-id'
        - $ref: '#/components/parameters/db'
        - $ref: '#/components/parameters/project'
    parameters: []
  '/queries/{query_id}/status':
    parameters:
      - name: query_id
        in: path
        required: true
        schema:
          type: string
    get:
      summary: get query status
      operationId: get-query-status
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - RUNNING
                      - COMPLETED
                      - FAILED
                required:
                  - status
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericError'
      parameters:
        - $ref: '#/components/parameters/x-request-id'
        - $ref: '#/components/parameters/db'
        - $ref: '#/components/parameters/project'
        - $ref: '#/components/parameters/Authorization'
  '/queries/{query_id}':
    parameters:
      - name: query_id
        in: path
        required: true
        schema:
          type: string
    get:
      summary: get query description
      tags: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: string
                  type:
                    type: string
                    enum:
                      - ANALYTICS
                      - STREAMING
                  text:
                    type: string
                  description:
                    type: string
                  meta:
                    $ref: '#/components/schemas/Meta'
                  issues:
                    $ref: '#/components/schemas/QueryError'
                  result_sets:
                    type: array
                    items:
                      $ref: '#/components/schemas/ResultSetMeta'
                  status:
                    $ref: '#/components/schemas/Status'
                  id:
                    type: string
                required:
                  - name
                  - type
                  - text
                  - description
                  - meta
                  - result_sets
                  - status
                  - id
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericError'
      operationId: get-query
      parameters:
        - $ref: '#/components/parameters/x-request-id'
        - $ref: '#/components/parameters/Authorization'
        - $ref: '#/components/parameters/db'
        - $ref: '#/components/parameters/project'
  '/queries/{query_id}/stop':
    post:
      responses:
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericError'
      parameters:
        - $ref: '#/components/parameters/Idempotency-Key'
        - $ref: '#/components/parameters/Authorization'
        - $ref: '#/components/parameters/x-request-id'
        - $ref: '#/components/parameters/db'
        - $ref: '#/components/parameters/project'
      summary: stop query
      operationId: stop-query
    parameters:
      - name: query_id
        in: path
        required: true
        schema:
          type: string
  '/queries/{query_id}/start':
    post:
      responses:
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericError'
      parameters:
        - $ref: '#/components/parameters/Idempotency-Key'
        - $ref: '#/components/parameters/Authorization'
        - $ref: '#/components/parameters/x-request-id'
        - $ref: '#/components/parameters/db'
        - $ref: '#/components/parameters/project'
      summary: start stopped query
      operationId: start-query
    parameters:
      - name: query_id
        in: path
        required: true
        schema:
          type: string
  '/queries/{query_id}/results/{result_set_index}':
    parameters:
      - name: query_id
        in: path
        required: true
        schema:
          type: string
      - schema:
          type: integer
          format: int32
        name: result_set_index
        in: path
        required: true
    get:
      summary: get query result set
      tags: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultSet'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericError'
        '412':
          description: Precondition Failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericError'
      operationId: get-query-results
      parameters:
        - schema:
            type: integer
            minimum: 0
            default: 0
          in: query
          name: offset
        - in: query
          name: limit
          schema:
            type: integer
            minimum: 0
            maximum: 1000
            default: 100
        - $ref: '#/components/parameters/Authorization'
        - $ref: '#/components/parameters/x-request-id'
        - $ref: '#/components/parameters/db'
        - $ref: '#/components/parameters/project'
components:
  schemas:
    Meta:
      title: Meta
      x-stoplight:
        id: 7teufkl6phim7
      type: object
      properties:
        started_at:
          type: string
          format: date-time
        finished_at:
          type: string
          format: date-time
      required:
        - started_at
        - finished_at
    Issue:
      title: Issue
      x-stoplight:
        id: zxxq42jy0xvnh
      type: object
      properties:
        position:
          $ref: '#/components/schemas/Position'
        message:
          type: string
        end_position:
          $ref: '#/components/schemas/Position'
        issue_code:
          type: integer
        severity:
          type: string
          enum:
            - FATAL
            - ERROR
            - WARNING
            - INFO
        issues:
          type: array
          items:
            $ref: '#/components/schemas/Issue'
    Position:
      title: Position
      x-stoplight:
        id: tcyf21n7n9iux
      type: object
      properties:
        row:
          type: integer
        column:
          type: integer
        file:
          type: string
    Column:
      title: Column
      x-stoplight:
        id: ix1xo4g783mto
      type: object
      properties:
        name:
          type: string
        type:
          type: string
      required:
        - name
        - type
    QueryMeta:
      title: QueryMeta
      x-stoplight:
        id: n2scqrbk9arg9
      type: object
      properties:
        started_at:
          type: string
          format: date-time
        started_by:
          type: string
        finished_at:
          type: string
          format: date-time
        finished_by:
          type: string
    ResultSetMeta:
      title: ResultSetMeta
      x-stoplight:
        id: n2scqrbk9arg9
      type: object
      properties:
        rows_count:
          type: integer
        truncated:
          type: boolean
      required:
        - rows_count
        - truncated
    Status:
      type: string
      title: Status
      x-stoplight:
        id: 8wdxl9a4q2gl1
      enum:
        - RUNNING
        - COMPLETED
        - FAILED
    ResultSet:
      title: ResultSet
      x-stoplight:
        id: 2ef8uu68huzri
      type: object
      properties:
        columns:
          type: array
          items:
            $ref: '#/components/schemas/Column'
        rows:
          type: array
          items:
            type: array
            items:
              $ref: '#/components/schemas/AnyValue'
      required:
        - columns
        - rows
    AnyValue:
      nullable: true
      anyOf:
        - type: string
        - type: number
        - type: integer
        - type: boolean
        - type: array
          items: {}
    GenericError:
      title: GenericError
      x-stoplight:
        id: uslsk0w6n30gx
      type: object
      properties:
        details:
          type: array
          items:
            $ref: '#/components/schemas/Issue'
        message:
          type: string
        status:
          type: integer
      required:
        - message
    QueryError:
      title: QueryError
      x-stoplight:
        id: uslsk0w6n30gx
      type: object
      properties:
        details:
          type: array
          items:
            $ref: '#/components/schemas/Issue'
        message:
          type: string
      required:
        - message
  parameters:
    query_id:
      name: query_id
      in: path
      required: true
      schema:
        type: string
    next_page_token:
      name: page_token
      in: query
      required: false
      schema:
        type: string
    created_by_me:
      name: created_only_by_me
      in: query
      required: false
      schema:
        type: boolean
    page_size:
      name: page_size
      in: query
      required: false
      schema:
        type: integer
        minimum: 0
        maximum: 100
    Idempotency-Key:
      name: Idempotency-Key
      in: header
      schema:
        type: string
    Authorization:
      name: Authorization
      in: header
      required: false
      schema:
        type: string
    x-request-id:
      name: x-request-id
      in: header
      required: false
      schema:
        type: string
    project:
      name: project
      in: query
      required: false
      schema:
        type: string
    db:
      name: db
      in: query
      required: false
      schema:
        type: string
---------------------------- Captured log teardown -----------------------------
INFO     ya.test:ya.py:429 Test teardown
INFO     ydb.tests.library.harness.kikimr_runner:kikimr_runner.py:251 Stopped node localhost:22665/1
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/23949
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/5801
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/18965
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/22665
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/15359
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/63712
DEBUG    library.python.cores:__init__.py:36 hostname = 'ghrun-yst5jzyzcm'
DEBUG    library.python.cores:__init__.py:37 rlimit_core = '(0, -1)'
DEBUG    library.python.cores:__init__.py:40 core_pattern = '|/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -F%F -- %E'
DEBUG    library.python.cores:__init__.py:72 core_uses_pid = '1'
DEBUG    library.python.cores:__init__.py:87 Core dump dir (/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1) permission mask: 0o40755 (expected: 0o41777 (0o40000-dir, 0o1000-sticky bit))
DEBUG    library.python.cores:__init__.py:95 Search for core dump files match pattern 'core.3263653' in '/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1'
DEBUG    library.python.cores:__init__.py:101 Matched core dump files (0/3): [] (mismatched samples: stderr, stdout, logfile_82lyzy4v.log)
WARNING  library.python.cores:__init__.py:84 Core dump dir doesn't exist: /coredumps
WARNING  library.python.cores:__init__.py:84 Core dump dir doesn't exist: /var/tmp/cores
INFO     ydb.tests.library.harness.kikimr_runner:kikimr_runner.py:251 Stopped node localhost:2751/1
=================================== FAILURES ===================================
______________________ TestHttpApi.test_stop_idempotency _______________________
ydb/tests/fq/http_api/test_http_api.py:225: in test_stop_idempotency
    self.streaming_over_kikimr.compute_plane.stop()
ydb/tests/tools/fq_runner/kikimr_runner.py:62: in stop
    self.kikimr_cluster.stop(kill=False)
ydb/tests/library/harness/kikimr_runner.py:577: in stop
    raise daemon.SeveralDaemonErrors(saved_exceptions)
E   ydb.tests.library.harness.daemon.SeveralDaemonErrors: Daemon failed with message: Bad exit_code..
E   Process exit_code = -6.
E   Stdout file name: 
E   /home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stdout
E   Stderr file name: 
E   /home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stderr
E   Stderr content:
E   
E   GRpc memory quota was set but disabled due to issues with grpc quoter, to enable it use EnableGRpcMemoryQuota option
E   :GRPC_LIBRARY ERROR: no server name supplied in dns URI
E   :GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
E   VERIFY failed (2025-11-04T16:23:37.957333Z): FinishStateFunc: unexpected message type 0x7ff00000
E   ydb/core/fq/libs/actors/run_actor.cpp:455
E   FinishStateFunc(): requirement false failed
E   :GRPC_LIBRARY ERROR: no server name supplied in dns URI
E   :GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
E   0. /-S/util/system/yassert.cpp:83: InternalPanicImpl @ 0xA304FF5
E   1. /-S/util/system/yassert.cpp:55: Panic @ 0xA2FE866
E   2. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:438: FinishStateFunc @ 0x1B541073
E   3. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:415: ?? @ 0x1B5401BD
E   4. /-S/ydb/library/actors/core/actor.h:853: State @ 0x1B4CCD10
E   5. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:268: Execute @ 0xB067D2B
E   6. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:457: operator() @ 0xB06BA12
E   7. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:509: ProcessExecutorPool @ 0xB06B5E0
E   8. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:535: ThreadProc @ 0xB06C26A
E   9. /-S/util/system/thread.cpp:244: ThreadProxy @ 0xA3096DC
E   10. ??:0: ?? @ 0x7F89BB459AC2
E   11. ??:0: ?? @ 0x7F89BB4EB8BF
------------------------------ Captured log setup ------------------------------
INFO     ya.test:ya.py:418 ####################################################################################################
INFO     ya.test:ya.py:419 test_stop_idempotency
INFO     ya.test:ya.py:420 ####################################################################################################
INFO     ya.test:ya.py:421 Test setup
------------------------------ Captured log call -------------------------------
INFO     ya.test:ya.py:434 Test call (class_name: test_http_api.py::TestHttpApi, test_name: test_stop_idempotency)
DEBUG    library.python.cores:__init__.py:36 hostname = 'ghrun-yst5jzyzcm'
DEBUG    library.python.cores:__init__.py:37 rlimit_core = '(0, -1)'
DEBUG    library.python.cores:__init__.py:40 core_pattern = '|/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -F%F -- %E'
DEBUG    library.python.cores:__init__.py:72 core_uses_pid = '1'
DEBUG    library.python.cores:__init__.py:87 Core dump dir (/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1) permission mask: 0o40755 (expected: 0o41777 (0o40000-dir, 0o1000-sticky bit))
DEBUG    library.python.cores:__init__.py:95 Search for core dump files match pattern 'core.3263653' in '/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1'
DEBUG    library.python.cores:__init__.py:101 Matched core dump files (0/3): [] (mismatched samples: stderr, stdout, logfile_82lyzy4v.log)
WARNING  library.python.cores:__init__.py:84 Core dump dir doesn't exist: /coredumps
WARNING  library.python.cores:__init__.py:84 Core dump dir doesn't exist: /var/tmp/cores
INFO     ydb.tests.library.harness.kikimr_runner:kikimr_runner.py:251 Stopped node localhost:2751/1
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/9603
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/27927
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/7853
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/2751
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/26404
DEBUG    library.python.filelock:__init__.py:119 Ensuring FileLock released: /home/runner/.ya/build/port_sync_dir/22614
---------------------------- Captured log teardown -----------------------------
INFO     ya.test:ya.py:429 Test teardown
_____________________ TestHttpApi.test_restart_idempotency _____________________
ydb/tests/fq/http_api/test_http_api.py:241: in test_restart_idempotency
    self.streaming_over_kikimr.compute_plane.stop()
ydb/tests/tools/fq_runner/kikimr_runner.py:62: in stop
    self.kikimr_cluster.stop(kill=False)
ydb/tests/library/harness/kikimr_runner.py:577: in stop
    raise daemon.SeveralDaemonErrors(saved_exceptions)
E   ydb.tests.library.harness.daemon.SeveralDaemonErrors: Daemon failed with message: Unexpectedly finished before stop.
E   Process exit_code = -6.
E   Stdout file name: 
E   /home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stdout
E   Stderr file name: 
E   /home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stderr
E   Stderr content:
E   
E   GRpc memory quota was set but disabled due to issues with grpc quoter, to enable it use EnableGRpcMemoryQuota option
E   :GRPC_LIBRARY ERROR: no server name supplied in dns URI
E   :GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
E   VERIFY failed (2025-11-04T16:23:37.957333Z): FinishStateFunc: unexpected message type 0x7ff00000
E   ydb/core/fq/libs/actors/run_actor.cpp:455
E   FinishStateFunc(): requirement false failed
E   :GRPC_LIBRARY ERROR: no server name supplied in dns URI
E   :GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
E   0. /-S/util/system/yassert.cpp:83: InternalPanicImpl @ 0xA304FF5
E   1. /-S/util/system/yassert.cpp:55: Panic @ 0xA2FE866
E   2. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:438: FinishStateFunc @ 0x1B541073
E   3. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:415: ?? @ 0x1B5401BD
E   4. /-S/ydb/library/actors/core/actor.h:853: State @ 0x1B4CCD10
E   5. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:268: Execute @ 0xB067D2B
E   6. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:457: operator() @ 0xB06BA12
E   7. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:509: ProcessExecutorPool @ 0xB06B5E0
E   8. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:535: ThreadProc @ 0xB06C26A
E   9. /-S/util/system/thread.cpp:244: ThreadProxy @ 0xA3096DC
E   10. ??:0: ?? @ 0x7F89BB459AC2
E   11. ??:0: ?? @ 0x7F89BB4EB8BF
------------------------------ Captured log setup ------------------------------
INFO     ya.test:ya.py:418 ####################################################################################################
INFO     ya.test:ya.py:419 test_restart_idempotency
INFO     ya.test:ya.py:420 ####################################################################################################
INFO     ya.test:ya.py:421 Test setup
------------------------------ Captured log call -------------------------------
INFO     ya.test:ya.py:434 Test call (class_name: test_http_api.py::TestHttpApi, test_name: test_restart_idempotency)
DEBUG    library.python.cores:__init__.py:36 hostname = 'ghrun-yst5jzyzcm'
DEBUG    library.python.cores:__init__.py:37 rlimit_core = '(0, -1)'
DEBUG    library.python.cores:__init__.py:40 core_pattern = '|/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -F%F -- %E'
DEBUG    library.python.cores:__init__.py:72 core_uses_pid = '1'
DEBUG    library.python.cores:__init__.py:87 Core dump dir (/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1) permission mask: 0o40755 (expected: 0o41777 (0o40000-dir, 0o1000-sticky bit))
DEBUG    library.python.cores:__init__.py:95 Search for core dump files match pattern 'core.3263653' in '/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1'
DEBUG    library.python.cores:__init__.py:101 Matched core dump files (0/3): [] (mismatched samples: stderr, stdout, logfile_82lyzy4v.log)
WARNING  library.python.cores:__init__.py:84 Core dump dir doesn't exist: /coredumps
WARNING  library.python.cores:__init__.py:84 Core dump dir doesn't exist: /var/tmp/cores
INFO     ydb.tests.library.harness.kikimr_runner:kikimr_runner.py:251 Stopped node localhost:2751/1
---------------------------- Captured log teardown -----------------------------
INFO     ya.test:ya.py:429 Test teardown
___________________ TestHttpApi.test_simple_streaming_query ____________________
ydb/tests/fq/http_api/test_http_api.py:292: in test_simple_streaming_query
    wait_for_query_status(client, query_id, ["FAILED"])
library/python/retry/__init__.py:199: in wrapped
    return _retry(conf, functools.partial(f, *f_args, **f_kwargs))
library/python/retry/__init__.py:224: in _retry
    return f()
ydb/tests/fq/http_api/test_http_api.py:24: in wait_for_query_status
    raise Exception(f"Status {status} is not in {statuses}")
E   Exception: Status RUNNING is not in ['FAILED']
------------------------------ Captured log setup ------------------------------
INFO     ya.test:ya.py:418 ####################################################################################################
INFO     ya.test:ya.py:419 test_simple_streaming_query
INFO     ya.test:ya.py:420 ####################################################################################################
INFO     ya.test:ya.py:421 Test setup
------------------------------ Captured log call -------------------------------
INFO     ya.test:ya.py:434 Test call (class_name: test_http_api.py::TestHttpApi, test_name: test_simple_streaming_query)
DEBUG    root:control_plane.py:61 Requesting CreateStream.
Database: "local".
Request:
stream_name: "/local/simple_streaming_query_input"
shard_count: 1
write_quota_kb_per_sec: 1024
retention_period_hours: 1

DEBUG    root:control_plane.py:45 Response: operation {
  ready: true
  status: SUCCESS
}

DEBUG    root:control_plane.py:49 Result: 
DEBUG    root:http_client.py:104 Response: 200, {"id":"ptqudt72v7942urrsk9k"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"id":"ptqudt72v7942urrsk9k","type":"STREAMING","name":"my first query","description":"some description","status":"RUNNING","text":"select * from yds1.`simple_streaming_query_input`","meta":{"started_at":"2025-11-04T16:23:45.846164Z","finished_at":""},"result_sets":[]}
DEBUG    root:http_client.py:104 Response: 204, 
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
---------------------------- Captured log teardown -----------------------------
INFO     ya.test:ya.py:429 Test teardown
______________________ TestHttpApi.test_integral_results _______________________
ydb/tests/fq/http_api/test_http_api.py:325: in test_integral_results
    wait_for_query_status(client, query_id, ["COMPLETED"])
library/python/retry/__init__.py:199: in wrapped
    return _retry(conf, functools.partial(f, *f_args, **f_kwargs))
library/python/retry/__init__.py:224: in _retry
    return f()
ydb/tests/fq/http_api/test_http_api.py:24: in wait_for_query_status
    raise Exception(f"Status {status} is not in {statuses}")
E   Exception: Status RUNNING is not in ['COMPLETED']
------------------------------ Captured log setup ------------------------------
INFO     ya.test:ya.py:418 ####################################################################################################
INFO     ya.test:ya.py:419 test_integral_results
INFO     ya.test:ya.py:420 ####################################################################################################
INFO     ya.test:ya.py:421 Test setup
------------------------------ Captured log call -------------------------------
INFO     ya.test:ya.py:434 Test call (class_name: test_http_api.py::TestHttpApi, test_name: test_integral_results)
DEBUG    root:http_client.py:104 Response: 200, {"id":"ptqudt72utih82md598f"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
---------------------------- Captured log teardown -----------------------------
INFO     ya.test:ya.py:429 Test teardown
______________________ TestHttpApi.test_optional_results _______________________
ydb/tests/fq/http_api/test_http_api.py:431: in test_optional_results
    wait_for_query_status(client, query_id, ["COMPLETED"])
library/python/retry/__init__.py:199: in wrapped
    return _retry(conf, functools.partial(f, *f_args, **f_kwargs))
library/python/retry/__init__.py:224: in _retry
    return f()
ydb/tests/fq/http_api/test_http_api.py:24: in wait_for_query_status
    raise Exception(f"Status {status} is not in {statuses}")
E   Exception: Status RUNNING is not in ['COMPLETED']
------------------------------ Captured log setup ------------------------------
INFO     ya.test:ya.py:418 ####################################################################################################
INFO     ya.test:ya.py:419 test_optional_results
INFO     ya.test:ya.py:420 ####################################################################################################
INFO     ya.test:ya.py:421 Test setup
------------------------------ Captured log call -------------------------------
INFO     ya.test:ya.py:434 Test call (class_name: test_http_api.py::TestHttpApi, test_name: test_optional_results)
DEBUG    root:http_client.py:104 Response: 200, {"id":"ptqudt72ujrupsld3r4s"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
---------------------------- Captured log teardown -----------------------------
INFO     ya.test:ya.py:429 Test teardown
_________________________ TestHttpApi.test_pg_results __________________________
ydb/tests/fq/http_api/test_http_api.py:458: in test_pg_results
    wait_for_query_status(client, query_id, ["COMPLETED"])
library/python/retry/__init__.py:199: in wrapped
    return _retry(conf, functools.partial(f, *f_args, **f_kwargs))
library/python/retry/__init__.py:224: in _retry
    return f()
ydb/tests/fq/http_api/test_http_api.py:24: in wait_for_query_status
    raise Exception(f"Status {status} is not in {statuses}")
E   Exception: Status RUNNING is not in ['COMPLETED']
------------------------------ Captured log setup ------------------------------
INFO     ya.test:ya.py:418 ####################################################################################################
INFO     ya.test:ya.py:419 test_pg_results
INFO     ya.test:ya.py:420 ####################################################################################################
INFO     ya.test:ya.py:421 Test setup
------------------------------ Captured log call -------------------------------
INFO     ya.test:ya.py:434 Test call (class_name: test_http_api.py::TestHttpApi, test_name: test_pg_results)
DEBUG    root:http_client.py:104 Response: 200, {"id":"ptqudt72ua2c9rp6bnjn"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
---------------------------- Captured log teardown -----------------------------
INFO     ya.test:ya.py:429 Test teardown
_________________________ TestHttpApi.test_set_result __________________________
ydb/tests/fq/http_api/test_http_api.py:531: in test_set_result
    wait_for_query_status(client, query_id, ["COMPLETED"])
library/python/retry/__init__.py:199: in wrapped
    return _retry(conf, functools.partial(f, *f_args, **f_kwargs))
library/python/retry/__init__.py:224: in _retry
    return f()
ydb/tests/fq/http_api/test_http_api.py:24: in wait_for_query_status
    raise Exception(f"Status {status} is not in {statuses}")
E   Exception: Status RUNNING is not in ['COMPLETED']
------------------------------ Captured log setup ------------------------------
INFO     ya.test:ya.py:418 ####################################################################################################
INFO     ya.test:ya.py:419 test_set_result
INFO     ya.test:ya.py:420 ####################################################################################################
INFO     ya.test:ya.py:421 Test setup
------------------------------ Captured log call -------------------------------
INFO     ya.test:ya.py:434 Test call (class_name: test_http_api.py::TestHttpApi, test_name: test_set_result)
DEBUG    root:http_client.py:104 Response: 200, {"id":"ptqudt72u0cn1bb9epcu"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
---------------------------- Captured log teardown -----------------------------
INFO     ya.test:ya.py:429 Test teardown
_______________________ TestHttpApi.test_complex_results _______________________
ydb/tests/fq/http_api/test_http_api.py:570: in test_complex_results
    wait_for_query_status(client, query_id, ["COMPLETED"])
library/python/retry/__init__.py:199: in wrapped
    return _retry(conf, functools.partial(f, *f_args, **f_kwargs))
library/python/retry/__init__.py:224: in _retry
    return f()
ydb/tests/fq/http_api/test_http_api.py:24: in wait_for_query_status
    raise Exception(f"Status {status} is not in {statuses}")
E   Exception: Status RUNNING is not in ['COMPLETED']
------------------------------ Captured log setup ------------------------------
INFO     ya.test:ya.py:418 ####################################################################################################
INFO     ya.test:ya.py:419 test_complex_results
INFO     ya.test:ya.py:420 ####################################################################################################
INFO     ya.test:ya.py:421 Test setup
------------------------------ Captured log call -------------------------------
INFO     ya.test:ya.py:434 Test call (class_name: test_http_api.py::TestHttpApi, test_name: test_complex_results)
DEBUG    root:http_client.py:104 Response: 200, {"id":"ptqudt72tmkcra2aegpb"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
---------------------------- Captured log teardown -----------------------------
INFO     ya.test:ya.py:429 Test teardown
_____________________ TestHttpApi.test_result_offset_limit _____________________
ydb/tests/fq/http_api/test_http_api.py:688: in test_result_offset_limit
    wait_for_query_status(client, query_id, ["COMPLETED"])
library/python/retry/__init__.py:199: in wrapped
    return _retry(conf, functools.partial(f, *f_args, **f_kwargs))
library/python/retry/__init__.py:224: in _retry
    return f()
ydb/tests/fq/http_api/test_http_api.py:24: in wait_for_query_status
    raise Exception(f"Status {status} is not in {statuses}")
E   Exception: Status RUNNING is not in ['COMPLETED']
------------------------------ Captured log setup ------------------------------
INFO     ya.test:ya.py:418 ####################################################################################################
INFO     ya.test:ya.py:419 test_result_offset_limit
INFO     ya.test:ya.py:420 ####################################################################################################
INFO     ya.test:ya.py:421 Test setup
------------------------------ Captured log call -------------------------------
INFO     ya.test:ya.py:434 Test call (class_name: test_http_api.py::TestHttpApi, test_name: test_result_offset_limit)
DEBUG    root:http_client.py:104 Response: 200, {"id":"ptqudt72tcqojeesgt05"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
DEBUG    root:http_client.py:104 Response: 200, {"status":"RUNNING"}
---------------------------- Captured log teardown -----------------------------
INFO     ya.test:ya.py:429 Test teardown
============================== slowest durations ===============================
10.20s call     test_http_api.py::TestHttpApi::test_simple_streaming_query
10.13s call     test_http_api.py::TestHttpApi::test_complex_results
10.13s call     test_http_api.py::TestHttpApi::test_optional_results
10.09s call     test_http_api.py::TestHttpApi::test_result_offset_limit
10.09s call     test_http_api.py::TestHttpApi::test_integral_results
10.07s call     test_http_api.py::TestHttpApi::test_pg_results
10.05s call     test_http_api.py::TestHttpApi::test_set_result
7.02s call     test_http_api.py::TestHttpApi::test_stop_idempotency
3.06s teardown test_http_api.py::TestHttpApi::test_openapi_spec
3.01s call     test_http_api.py::TestHttpApi::test_simple_analytics_query
0.94s call     test_http_api.py::TestHttpApi::test_create_idempotency
0.79s call     test_http_api.py::TestHttpApi::test_warning
0.50s setup    test_http_api.py::TestHttpApi::test_simple_analytics_query
0.19s call     test_http_api.py::TestHttpApi::test_openapi_spec
0.04s setup    test_http_api.py::TestHttpApi::test_pg_results
0.04s setup    test_http_api.py::TestHttpApi::test_openapi_spec
0.02s teardown test_http_api.py::TestHttpApi::test_result_offset_limit
0.02s setup    test_http_api.py::TestHttpApi::test_restart_idempotency
0.02s teardown test_http_api.py::TestHttpApi::test_optional_results
0.01s setup    test_http_api.py::TestHttpApi::test_empty_query
0.01s setup    test_http_api.py::TestHttpApi::test_optional_results
0.01s call     test_http_api.py::TestHttpApi::test_empty_query
0.01s call     test_http_api.py::TestHttpApi::test_restart_idempotency
0.01s call     test_http_api.py::TestHttpApi::test_get_unknown_query
0.01s setup    test_http_api.py::TestHttpApi::test_result_offset_limit
0.01s call     test_http_api.py::TestHttpApi::test_unauthenticated

(22 durations < 0.005s hidden.  Use -vv to show these durations.)
=========================== short test summary info ============================
FAILED test_http_api.py::TestHttpApi::test_stop_idempotency - ydb.tests.library.harness.daemon.SeveralDaemonErrors: Daemon failed with message: Bad exit_code..
Process exit_code = -6.
Stdout file name: 
/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stdout
Stderr file name: 
/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stderr
Stderr content:

GRpc memory quota was set but disabled due to issues with grpc quoter, to enable it use EnableGRpcMemoryQuota option
:GRPC_LIBRARY ERROR: no server name supplied in dns URI
:GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
VERIFY failed (2025-11-04T16:23:37.957333Z): FinishStateFunc: unexpected message type 0x7ff00000
ydb/core/fq/libs/actors/run_actor.cpp:455
FinishStateFunc(): requirement false failed
:GRPC_LIBRARY ERROR: no server name supplied in dns URI
:GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
0. /-S/util/system/yassert.cpp:83: InternalPanicImpl @ 0xA304FF5
1. /-S/util/system/yassert.cpp:55: Panic @ 0xA2FE866
2. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:438: FinishStateFunc @ 0x1B541073
3. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:415: ?? @ 0x1B5401BD
4. /-S/ydb/library/actors/core/actor.h:853: State @ 0x1B4CCD10
5. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:268: Execute @ 0xB067D2B
6. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:457: operator() @ 0xB06BA12
7. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:509: ProcessExecutorPool @ 0xB06B5E0
8. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:535: ThreadProc @ 0xB06C26A
9. /-S/util/system/thread.cpp:244: ThreadProxy @ 0xA3096DC
10. ??:0: ?? @ 0x7F89BB459AC2
11. ??:0: ?? @ 0x7F89BB4EB8BF
FAILED test_http_api.py::TestHttpApi::test_restart_idempotency - ydb.tests.library.harness.daemon.SeveralDaemonErrors: Daemon failed with message: Unexpectedly finished before stop.
Process exit_code = -6.
Stdout file name: 
/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stdout
Stderr file name: 
/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stderr
Stderr content:

GRpc memory quota was set but disabled due to issues with grpc quoter, to enable it use EnableGRpcMemoryQuota option
:GRPC_LIBRARY ERROR: no server name supplied in dns URI
:GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
VERIFY failed (2025-11-04T16:23:37.957333Z): FinishStateFunc: unexpected message type 0x7ff00000
ydb/core/fq/libs/actors/run_actor.cpp:455
FinishStateFunc(): requirement false failed
:GRPC_LIBRARY ERROR: no server name supplied in dns URI
:GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
0. /-S/util/system/yassert.cpp:83: InternalPanicImpl @ 0xA304FF5
1. /-S/util/system/yassert.cpp:55: Panic @ 0xA2FE866
2. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:438: FinishStateFunc @ 0x1B541073
3. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:415: ?? @ 0x1B5401BD
4. /-S/ydb/library/actors/core/actor.h:853: State @ 0x1B4CCD10
5. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:268: Execute @ 0xB067D2B
6. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:457: operator() @ 0xB06BA12
7. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:509: ProcessExecutorPool @ 0xB06B5E0
8. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:535: ThreadProc @ 0xB06C26A
9. /-S/util/system/thread.cpp:244: ThreadProxy @ 0xA3096DC
10. ??:0: ?? @ 0x7F89BB459AC2
11. ??:0: ?? @ 0x7F89BB4EB8BF
FAILED test_http_api.py::TestHttpApi::test_simple_streaming_query - Exception: Status RUNNING is not in ['FAILED']
FAILED test_http_api.py::TestHttpApi::test_integral_results - Exception: Status RUNNING is not in ['COMPLETED']
FAILED test_http_api.py::TestHttpApi::test_optional_results - Exception: Status RUNNING is not in ['COMPLETED']
FAILED test_http_api.py::TestHttpApi::test_pg_results - Exception: Status RUNNING is not in ['COMPLETED']
FAILED test_http_api.py::TestHttpApi::test_set_result - Exception: Status RUNNING is not in ['COMPLETED']
FAILED test_http_api.py::TestHttpApi::test_complex_results - Exception: Status RUNNING is not in ['COMPLETED']
FAILED test_http_api.py::TestHttpApi::test_result_offset_limit - Exception: Status RUNNING is not in ['COMPLETED']
ERROR test_http_api.py::TestHttpApi::test_openapi_spec - ydb.tests.library.harness.daemon.SeveralDaemonErrors: Daemon failed with message: Unexpectedly finished before stop.
Process exit_code = -6.
Stdout file name: 
/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stdout
Stderr file name: 
/home/runner/.ya/build/build_root/2lvl/00251a/ydb/tests/fq/http_api/test-results/py3test/testing_out_stuff/test_http_api.py.TestHttpApi.test_simple_analytics_query/alpha/node_1/stderr
Stderr content:

GRpc memory quota was set but disabled due to issues with grpc quoter, to enable it use EnableGRpcMemoryQuota option
:GRPC_LIBRARY ERROR: no server name supplied in dns URI
:GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
VERIFY failed (2025-11-04T16:23:37.957333Z): FinishStateFunc: unexpected message type 0x7ff00000
ydb/core/fq/libs/actors/run_actor.cpp:455
FinishStateFunc(): requirement false failed
:GRPC_LIBRARY ERROR: no server name supplied in dns URI
:GRPC_LIBRARY ERROR: channel stack builder failed: UNKNOWN: the target uri is not valid: dns:///
0. /-S/util/system/yassert.cpp:83: InternalPanicImpl @ 0xA304FF5
1. /-S/util/system/yassert.cpp:55: Panic @ 0xA2FE866
2. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:438: FinishStateFunc @ 0x1B541073
3. /tmp//-S/ydb/core/fq/libs/actors/run_actor.cpp:415: ?? @ 0x1B5401BD
4. /-S/ydb/library/actors/core/actor.h:853: State @ 0x1B4CCD10
5. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:268: Execute @ 0xB067D2B
6. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:457: operator() @ 0xB06BA12
7. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:509: ProcessExecutorPool @ 0xB06B5E0
8. /tmp//-S/ydb/library/actors/core/executor_thread.cpp:535: ThreadProc @ 0xB06C26A
9. /-S/util/system/thread.cpp:244: ThreadProxy @ 0xA3096DC
10. ??:0: ?? @ 0x7F89BB459AC2
11. ??:0: ?? @ 0x7F89BB4EB8BF
=============== 9 failed, 7 passed, 1 error in 88.82s (0:01:28) ================
