Git Product home page Git Product logo

Comments (5)

lkiesow avatar lkiesow commented on June 16, 2024
  • Which version of pyCA are you using?
  • Can you post your full configuration? It's the test server anyway.
  • Can you enable debug logging

pyCA/etc/pyca.conf

Lines 242 to 245 in 0ac83c7

# Configure the log level
# Possible values are: debug, info, warning and error
# Default: info
#level = info

from pyca.

Bahamut-Chocobo avatar Bahamut-Chocobo commented on June 16, 2024

The current settings are:

  • OS: Ubuntu 18.04.5 LTS x86_64
  • Kernel: 4.15.0-112-generic
  • Package: (DEB) opencast-pyca/buster,now 3.2-2 all

the pyCA config in /etc/pyca/pyca.conf is as follows:

pyca.conf.txt

pyca.conf
###
# pyCA Configuration
##

# Notice: Most properties do have sensible defaults. Things that should be
# changed are those properties that are not commented out in this file.


[agent]

# Name of the capture agent
# Type: string
# Default: pyca@<hostname>
#name             = 'pyca'
name             = 'pca-test'

# How often (in seconds) should the capture agent try to get an updated
# schedule from the core.
# Type: integer
# Default: 60
#update_frequency = 60

# For how many days in advance shall the capture agent get the schedule. A
# smaller value will be faster and less memory consuming. Setting this to 0
# will make pyCA request all scheduled events.
# Type: integer
# Default: 14
#cal_lookahead    = 14

# In backup mode, the pyCA will not register itself or ingest anything to the
# core. It is useful if you want pyCA act as backup to another capture agent.
# To get the events for another agent, also set the name of the agent to the
# one that should be backed up.
# Type: boolean
# Default: False
#backup_mode      = False

# Location of the database file to cache scheduled events in and keep a
# history of recordings. This can be any database supported by SQLAlchemy.
# Type: String
# Default: sqlite:///pyca.db
database = sqlite:////var/lib/pyca/pyca.db


[capture]

# Base directory to store recordings in. For each recording a subdirectory
# will be created.
# Type: string
# Default: ./recordings
directory        = '/var/lib/pyca/recordings'

# Command to use for capturing. This may also be a script file. The only
# requirement is that the command terminates itself in time.
#
# Possible string substitutions you can use are:
#   {{time}}        Time to capture in seconds
#   {{dir}}         Directory to put recordings in
#   {{name}}        Autogenerated name of the recording.
#   {{previewdir}}  Directory to put preview images in
#
# Examples:
#
# Record pulseaudio source using FFmpeg:
#   ffmpeg -f pulse -i default -t %(time)s -c:a flac -ac 1 {{dir}}/{{name}}.flac
#
# Record video stream on a Reaspberry Pi using the camera module:
#   raspivid -n -t %(time)s000 -b 6000000 -fps 30 -o {{dir}}/{{name}}.h264
#
# Record audio using arecord (alsa recorder):
#   arecord -c 2 -d {{time}} -r 44100 -f S16_LE -D hw:0 {{dir}}/{{name}}.wav
#
# Run custom shell script:
#   /opt/rec.sh "{{dir}}" {{name}} {{time}}
#
# For more examples, have a look at the pyCA wiki.
#
# Type: string
# Default: ffmpeg -nostats -re -f lavfi -r 25 -i testsrc -t {{time}} {{dir}}/{{name}}.webm'
#command          = 'ffmpeg -nostats -re -f lavfi -r 25 -i testsrc -f lavfi -i sine -t {{time}} {{dir}}/{{name}}.webm'
#command          = 'ffmpeg -nostats -re -f lavfi -r 25 -i testsrc -f lavfi -i sine -t {{time}} {{dir}}/{{name}}.mp4'
command          = 'ffmpeg -nostats -re -f lavfi -r 25 -i testsrc -f lavfi -i sine -t {{time}} {{dir}}/{{name}}.avi'


# Flavors of output files produced by the capture command. One flavors should
# be specified for every output file.
# Type: list of strings (write as '...', '...')
# Default: 'presenter/source'
#flavors          = 'presenter/source'

# Output files produces by the capture command.
# Type: list of strings (write as '...', '...')
# Default: '{{dir}}/{{name}}.webm'
#files            = '{{dir}}/{{name}}.webm'

# Base directory for preview images generated by the capture command. They can
# be as confidence monitoring in the web ui.
# Type: String
# Default: ./recordings
#preview_dir      = '/var/lib/pyca/recordings'

# List of preview images to be included in the web ui.
# Type: list of strings (write as '...', '...')
# Default:
#preview          =

# Custom signal value that is sent to the capture process to gracefully finish the
# recording. Common signal values can be found in 'man 7 signal'.
# Type: Integer
# Default: 2 (SIGINT)
#sigcustom        = 2

# Time in seconds after an events end when the custom signal is sent to the capture
# process. Setting this to -1 will disable the signal.
# Type: Integer
# Default: -1 (disabled)
#sigcustom_time   = -1

# Time in seconds after an events end when a SIGTERM is sent to the capture
# process to shut it down in case it does not do that by itself. Setting this
# to -1 will disable the signal.
# Type: Integer
# Default: -1 (disabled)
#sigterm_time     = -1

# Time in seconds after an events end when a SIGKILL is sent to the capture
# process to ensure it terminates and does not block further recordings. Note
# that setting this lower than `sigterm_time` will set this to `sigterm_time`.
# Setting this to -1 will disable the signal.
# Type: Integer
# Default: 120
#sigkill_time     = 120

# An additional exit code to 0 indicating that the capture process has
# been completed successfully.
# Type: integer
# Default: 0
#exit_code        = 0


[ingest]

# Delete recordings after they have been successfully uploaded. This does only
# apply to the content of the recording directory, not the metadata.
# Type: boolean
# Default: False
#delete_after_upload = False


[server]

# Base URL of the admin server. This corresponds to the
# org.opencastproject.server.url setting of Opencast.
# Type: string
# Default: https://develop.opencast.org
#url              = ''
url              = 'https://<opencast-admin-server>'

# Analogue of -k, --insecure option in curl. Allows insercure SSL connections
# while using HTTPS on the server.
# Type: boolean
# Default: False
#insecure         = False

# Authentication Method
#
# Historically, capture agents use HTTP digest authentication. The downside of
# this is, that all users need to be specified in the backend configuration
# files. Instead, HTTP Basic authentication can be used with front-end users
# (users created in the web interface). Whatever you use, make sure the user
# has appropriate rights (e.g. ROLE_CAPTURE_AGENT) to communicate with the
# capture agent API in Opencast.
#
# Type: options
# Allowed values: basic, digest
# Default: digest
#auth_method = 'digest'

# Username for the admin server
# Type: string
# Default: opencast_system_account
username         = '<…>'

# Password for the admin server
# Type: string
# Default: CHANGE_ME
password         = '<…>'

# HTTPS certificates for verification. If signed by a certificate authority
# through an intermediate certificate, make sure to import the whole
# certificate chain.
# Type: string
# Default: ''
#certificate     = ''


[ui]

# Username for the pyCA web interface
# Type: string
# Default: admin
#username         = 'admin'
username         = '<…>'

# Password for the pyCA web interface
# Type: string
# Default: opencast
#password         = 'opencast'
password         = '<…>'

# How often (seconds) should the web interface refresh itself.
# Type: integer
# Default: 10
#refresh_rate     = 10

# URL where the web interface is reachable. This will be sent to the Matterhorn
# core and displayed in the admin interface.
# Type: string
# Default: http://localhost:5000
#url              = 'http://localhost:5000'
url              = 'http://<py.ca.ip.address>:80'

# Command to execute for gathering logs which are then published via the
# web API. The command is executed whenever the JSON API endpoint is
# requested.
# Defining no command will effectively disable the endpoint.
# Type: string
# Default: no command
#log_command = 'journalctl --no-hostname -n 50 -u "pyca*"'


[logging]

# Log to the system logger. Note that this will use /dev/log which may not be
# available on non Linux systems.
# Type: boolean
# Default: False
#syslog           = False

# Log to stderr
# Type: boolean
# Default: True
#stderr           = True

# Log to file. An empty string will deactivate this log handler.
# Type: String
# Default: ''
#file             = ''

# Configure the log level
# Possible values are: debug, info, warning and error
# Default: info
#level            = info
level            = debug 

# Log format configuration
# Default: [%(name)s:%(lineno)s:%(funcName)s()] [%(levelname)s] %(message)s
#format           = [%(name)s:%(lineno)s:%(funcName)s()] [%(levelname)s] %(message)s

the Log for pyCA from /var/log/syslog in debug mode is as follows:

pyca-debug-log.log.txt

pyca logs
Aug 11 12:38:14 pca-test pyca[4828]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:38:14 pca-test pyca[4828]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/agents/pca-test
Aug 11 12:38:14 pca-test pyca[4828]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:38:14 pca-test pyca[4828]: *   Trying Some.Public.IP.Address...
Aug 11 12:38:14 pca-test pyca[4828]: * TCP_NODELAY set
Aug 11 12:38:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:38:14 pca-test pyca[4828]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:38:14 pca-test pyca[4828]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:38:14 pca-test pyca[4828]: * ALPN, offering http/1.1
Aug 11 12:38:14 pca-test pyca[4828]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:38:14 pca-test pyca[4828]: * ALPN, server did not agree to a protocol
Aug 11 12:38:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:38:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:38:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:38:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:38:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:38:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:38:14 pca-test pyca[4828]: Content-Length: 0
Aug 11 12:38:14 pca-test pyca[4828]: #015
Aug 11 12:38:14 pca-test pyca[4828]: < HTTP/1.1 401 Full authentication is required to access this resource

Aug 11 12:38:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:38:14 pca-test pyca[4828]: <
Aug 11 12:38:14 pca-test pyca[4828]: * Ignoring the response-body
Aug 11 12:38:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:38:14 pca-test pyca[4828]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/agents/pca-test'
Aug 11 12:38:14 pca-test pyca[4828]: * Found bundle for host <opencast-admin-server>: 0x17fa8d0 [can pipeline]
Aug 11 12:38:14 pca-test pyca[4828]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:38:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:38:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:38:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:38:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:38:14 pca-test pyca[4828]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/agents/pca-test", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:38:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:38:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:38:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:38:14 pca-test pyca[4828]: Content-Length: 264
Aug 11 12:38:14 pca-test pyca[4828]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:38:14 pca-test pyca[4828]: #015
Aug 11 12:38:14 pca-test pyca[4828]: < HTTP/1.1 200 OK
Aug 11 12:38:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:38:14 GMT
Aug 11 12:38:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:38:14 pca-test pyca[4828]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:38:14 pca-test pyca[4828]: < Content-Length: 0
Aug 11 12:38:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:38:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:38:14 pca-test pyca[4828]: <
Aug 11 12:38:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:38:15 pca-test pyca[4840]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for scheduler: ['https://<opencast-admin-server>/recordings']
Aug 11 12:38:15 pca-test pyca[4840]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598351895000
Aug 11 12:38:15 pca-test pyca[4840]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:38:15 pca-test pyca[4840]: *   Trying Some.Public.IP.Address...
Aug 11 12:38:15 pca-test pyca[4840]: * TCP_NODELAY set
Aug 11 12:38:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:38:15 pca-test pyca[4840]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:38:15 pca-test pyca[4840]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:38:15 pca-test pyca[4840]: * ALPN, offering http/1.1
Aug 11 12:38:15 pca-test pyca[4840]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:38:15 pca-test pyca[4840]: * ALPN, server did not agree to a protocol
Aug 11 12:38:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:38:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598351895000 HTTP/1.1
Aug 11 12:38:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:38:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:38:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:38:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:38:15 pca-test pyca[4840]: #015
Aug 11 12:38:15 pca-test pyca[4840]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:38:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:38:15 GMT
Aug 11 12:38:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:38:15 pca-test pyca[4840]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:38:15 pca-test pyca[4840]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:38:15 pca-test pyca[4840]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:38:15 pca-test pyca[4840]: < Content-Length: 429
Aug 11 12:38:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:38:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:38:15 pca-test pyca[4840]: <
Aug 11 12:38:15 pca-test pyca[4840]: * Ignoring the response-body
Aug 11 12:38:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:38:15 pca-test pyca[4840]: * Issue another request to this URL: 'https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598351895000'
Aug 11 12:38:15 pca-test pyca[4840]: * Found bundle for host <opencast-admin-server>: 0x26bc660 [can pipeline]
Aug 11 12:38:15 pca-test pyca[4840]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:38:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:38:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:38:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598351895000 HTTP/1.1
Aug 11 12:38:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:38:15 pca-test pyca[4840]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/recordings/calendars?agentid=pca-test&cutoff=1598351895000", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:38:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:38:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:38:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:38:15 pca-test pyca[4840]: #015
Aug 11 12:38:15 pca-test pyca[4840]: < HTTP/1.1 200 OK
Aug 11 12:38:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:38:15 GMT
Aug 11 12:38:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:38:15 pca-test pyca[4840]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:38:15 pca-test pyca[4840]: < Content-Type: text/calendar;charset=UTF-8
Aug 11 12:38:15 pca-test pyca[4840]: < ETag: mod1597142243000
Aug 11 12:38:15 pca-test pyca[4840]: < Content-Length: 3196
Aug 11 12:38:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node<…>node0;Path=/;Secure
Aug 11 12:38:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:38:15 pca-test pyca[4840]: <
Aug 11 12:38:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:38:15 pca-test pyca[4840]: [pyca.schedule:116:control_loop()] [INFO] Next scheduled recording: 2020-08-11 12:38:00
Aug 11 12:38:15 pca-test pyca[4835]: [pyca.capture:46:start_capture()] [INFO] Start recording
Aug 11 12:38:15 pca-test pyca[4835]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:38:15 pca-test pyca[4835]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c
Aug 11 12:38:15 pca-test pyca[4835]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:38:15 pca-test pyca[4835]: *   Trying Some.Public.IP.Address...
Aug 11 12:38:15 pca-test pyca[4835]: * TCP_NODELAY set
Aug 11 12:38:15 pca-test pyca[4835]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:38:15 pca-test pyca[4835]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:38:15 pca-test pyca[4835]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:38:15 pca-test pyca[4835]: * ALPN, offering http/1.1
Aug 11 12:38:15 pca-test pyca[4835]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384
Aug 11 12:38:15 pca-test pyca[4835]: * #011 server certificate verification OK

Aug 11 12:38:15 pca-test pyca[4835]: * ALPN, server did not agree to a protocol
Aug 11 12:38:15 pca-test pyca[4835]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:38:15 pca-test pyca[4835]: > POST /capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c HTTP/1.1
Aug 11 12:38:15 pca-test pyca[4835]: Host: <opencast-admin-server>
Aug 11 12:38:15 pca-test pyca[4835]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:38:15 pca-test pyca[4835]: Accept: */*
Aug 11 12:38:15 pca-test pyca[4835]: X-Requested-Auth: Digest
Aug 11 12:38:15 pca-test pyca[4835]: Content-Length: 0
Aug 11 12:38:15 pca-test pyca[4835]: #015
Aug 11 12:38:15 pca-test pyca[4835]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:38:15 pca-test pyca[4835]: < Date: Tue, 11 Aug 2020 10:38:15 GMT
Aug 11 12:38:15 pca-test pyca[4835]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:38:15 pca-test pyca[4835]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:38:15 pca-test pyca[4835]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:38:15 pca-test pyca[4835]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:38:15 pca-test pyca[4835]: < Content-Length: 470
Aug 11 12:38:15 pca-test pyca[4835]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:38:15 pca-test pyca[4835]: < Access-Control-Allow-Origin: *
Aug 11 12:38:15 pca-test pyca[4835]: <
Aug 11 12:38:15 pca-test pyca[4835]: * Ignoring the response-body
Aug 11 12:38:15 pca-test pyca[4835]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:38:15 pca-test pyca[4835]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c'
Aug 11 12:38:15 pca-test pyca[4835]: * Found bundle for host <opencast-admin-server>: 0x23d6490 [can pipeline]
Aug 11 12:38:15 pca-test pyca[4835]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:38:15 pca-test pyca[4835]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:38:15 pca-test pyca[4835]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:38:15 pca-test pyca[4835]: > POST /capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c HTTP/1.1
Aug 11 12:38:15 pca-test pyca[4835]: Host: <opencast-admin-server>
Aug 11 12:38:15 pca-test pyca[4835]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:38:15 pca-test pyca[4835]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:38:15 pca-test pyca[4835]: Accept: */*
Aug 11 12:38:15 pca-test pyca[4835]: X-Requested-Auth: Digest
Aug 11 12:38:15 pca-test pyca[4835]: Content-Length: 149
Aug 11 12:38:15 pca-test pyca[4835]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:38:15 pca-test pyca[4835]: #015
Aug 11 12:38:15 pca-test pyca[4835]: < HTTP/1.1 200 OK
Aug 11 12:38:15 pca-test pyca[4835]: < Date: Tue, 11 Aug 2020 10:38:15 GMT
Aug 11 12:38:15 pca-test pyca[4835]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:38:15 pca-test pyca[4835]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:38:15 pca-test pyca[4835]: < Content-Type: application/octet-stream
Aug 11 12:38:15 pca-test pyca[4835]: < Content-Length: 53
Aug 11 12:38:15 pca-test pyca[4835]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:38:15 pca-test pyca[4835]: < Access-Control-Allow-Origin: *
Aug 11 12:38:15 pca-test pyca[4835]: <
Aug 11 12:38:15 pca-test pyca[4835]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:38:15 pca-test pyca[4835]: [pyca.utils:179:recording_state()] [INFO] 078fcc4b-f292-417e-a640-9058b580119c set to capturing
Aug 11 12:38:15 pca-test pyca[4835]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:38:15 pca-test pyca[4835]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/agents/pca-test
Aug 11 12:38:15 pca-test pyca[4835]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:38:15 pca-test pyca[4835]: *   Trying Some.Public.IP.Address...
Aug 11 12:38:15 pca-test pyca[4835]: * TCP_NODELAY set
Aug 11 12:38:15 pca-test pyca[4835]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:38:15 pca-test pyca[4835]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:38:15 pca-test pyca[4835]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:38:15 pca-test pyca[4835]: * ALPN, offering http/1.1
Aug 11 12:38:15 pca-test pyca[4835]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:38:15 pca-test pyca[4835]: * ALPN, server did not agree to a protocol
Aug 11 12:38:15 pca-test pyca[4835]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:38:15 pca-test pyca[4835]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:38:15 pca-test pyca[4835]: Host: <opencast-admin-server>
Aug 11 12:38:15 pca-test pyca[4835]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:38:15 pca-test pyca[4835]: Accept: */*
Aug 11 12:38:15 pca-test pyca[4835]: X-Requested-Auth: Digest
Aug 11 12:38:15 pca-test pyca[4835]: Content-Length: 0
Aug 11 12:38:15 pca-test pyca[4835]: #015
Aug 11 12:38:15 pca-test pyca[4835]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:38:15 pca-test pyca[4835]: < Date: Tue, 11 Aug 2020 10:38:15 GMT
Aug 11 12:38:15 pca-test pyca[4835]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:38:15 pca-test pyca[4835]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:38:15 pca-test pyca[4835]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:38:15 pca-test pyca[4835]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:38:15 pca-test pyca[4835]: < Content-Length: 438
Aug 11 12:38:15 pca-test pyca[4835]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:38:15 pca-test pyca[4835]: < Access-Control-Allow-Origin: *
Aug 11 12:38:15 pca-test pyca[4835]: <
Aug 11 12:38:15 pca-test pyca[4835]: * Ignoring the response-body
Aug 11 12:38:15 pca-test pyca[4835]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:38:15 pca-test pyca[4835]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/agents/pca-test'
Aug 11 12:38:15 pca-test pyca[4835]: * Found bundle for host <opencast-admin-server>: 0x23d6b10 [can pipeline]
Aug 11 12:38:15 pca-test pyca[4835]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:38:15 pca-test pyca[4835]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:38:15 pca-test pyca[4835]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:38:15 pca-test pyca[4835]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:38:15 pca-test pyca[4835]: Host: <opencast-admin-server>
Aug 11 12:38:15 pca-test pyca[4835]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/agents/pca-test", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:38:15 pca-test pyca[4835]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:38:15 pca-test pyca[4835]: Accept: */*
Aug 11 12:38:15 pca-test pyca[4835]: X-Requested-Auth: Digest
Aug 11 12:38:15 pca-test pyca[4835]: Content-Length: 269
Aug 11 12:38:15 pca-test pyca[4835]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:38:15 pca-test pyca[4835]: #015
Aug 11 12:38:16 pca-test pyca[4835]: < HTTP/1.1 200 OK
Aug 11 12:38:16 pca-test pyca[4835]: < Date: Tue, 11 Aug 2020 10:38:16 GMT
Aug 11 12:38:16 pca-test pyca[4835]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:38:16 pca-test pyca[4835]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:38:16 pca-test pyca[4835]: < Content-Type: text/html; charset=UTF-8
Aug 11 12:38:16 pca-test pyca[4835]: < Content-Length: 25
Aug 11 12:38:16 pca-test pyca[4835]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:38:16 pca-test pyca[4835]: < Access-Control-Allow-Origin: *
Aug 11 12:38:16 pca-test pyca[4835]: <
Aug 11 12:38:16 pca-test pyca[4835]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:38:16 pca-test pyca[4835]: [pyca.utils:158:register_ca()] [INFO] pca-test set to capturing
Aug 11 12:38:16 pca-test pyca[4835]: [pyca.capture:141:recording_command()] [INFO] ffmpeg -nostats -re -f lavfi -r 25 -i testsrc -f lavfi -i sine -t 284 /var/lib/pyca/recordings/recording-1597142280-078fcc4b-f292-417e-a640-9058b580119c/recording-1597142280-078fcc4b-f292-417e-a640-9058b580119c.avi
Aug 11 12:38:16 pca-test pyca[4835]: ffmpeg version 3.4.8-0ubuntu0.2 Copyright (c) 2000-2020 the FFmpeg developers
Aug 11 12:38:16 pca-test pyca[4835]:   built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04)
Aug 11 12:38:16 pca-test pyca[4835]:   configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
Aug 11 12:38:16 pca-test pyca[4835]:   libavutil      55. 78.100 / 55. 78.100
Aug 11 12:38:16 pca-test pyca[4835]:   libavcodec     57.107.100 / 57.107.100
Aug 11 12:38:16 pca-test pyca[4835]:   libavformat    57. 83.100 / 57. 83.100
Aug 11 12:38:16 pca-test pyca[4835]:   libavdevice    57. 10.100 / 57. 10.100
Aug 11 12:38:16 pca-test pyca[4835]:   libavfilter     6.107.100 /  6.107.100
Aug 11 12:38:16 pca-test pyca[4835]:   libavresample   3.  7.  0 /  3.  7.  0
Aug 11 12:38:16 pca-test pyca[4835]:   libswscale      4.  8.100 /  4.  8.100
Aug 11 12:38:16 pca-test pyca[4835]:   libswresample   2.  9.100 /  2.  9.100
Aug 11 12:38:16 pca-test pyca[4835]:   libpostproc    54.  7.100 / 54.  7.100
Aug 11 12:38:16 pca-test pyca[4835]: Input #0, lavfi, from 'testsrc':
Aug 11 12:38:16 pca-test pyca[4835]:   Duration: N/A, start: 0.000000, bitrate: N/A
Aug 11 12:38:16 pca-test pyca[4835]:     Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc
Aug 11 12:38:16 pca-test pyca[4835]: Input #1, lavfi, from 'sine':
Aug 11 12:38:16 pca-test pyca[4835]:   Duration: N/A, start: 0.000000, bitrate: 705 kb/s
Aug 11 12:38:16 pca-test pyca[4835]:     Stream #1:0: Audio: pcm_s16le, 44100 Hz, mono, s16, 705 kb/s
Aug 11 12:38:16 pca-test pyca[4835]: Stream mapping:
Aug 11 12:38:16 pca-test pyca[4835]:   Stream #0:0 -> #0:0 (rawvideo (native) -> mpeg4 (native))
Aug 11 12:38:16 pca-test pyca[4835]:   Stream #1:0 -> #0:1 (pcm_s16le (native) -> mp3 (libmp3lame))
Aug 11 12:38:16 pca-test pyca[4835]: Press [q] to stop, [?] for help
Aug 11 12:38:16 pca-test pyca[4835]: Output #0, avi, to '/var/lib/pyca/recordings/recording-1597142280-078fcc4b-f292-417e-a640-9058b580119c/recording-1597142280-078fcc4b-f292-417e-a640-9058b580119c.avi':
Aug 11 12:38:16 pca-test pyca[4835]:   Metadata:
Aug 11 12:38:16 pca-test pyca[4835]:     ISFT            : Lavf57.83.100
Aug 11 12:38:16 pca-test pyca[4835]:     Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p(progressive), 320x240 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
Aug 11 12:38:16 pca-test pyca[4835]:     Metadata:
Aug 11 12:38:16 pca-test pyca[4835]:       encoder         : Lavc57.107.100 mpeg4
Aug 11 12:38:16 pca-test pyca[4835]:     Side data:
Aug 11 12:38:16 pca-test pyca[4835]:       cpb: bitrate max/min/avg: 0/0/200000 buffer size: 0 vbv_delay: -1
Aug 11 12:38:16 pca-test pyca[4835]:     Stream #0:1: Audio: mp3 (libmp3lame) (U[0][0][0] / 0x0055), 44100 Hz, mono, s16p
Aug 11 12:38:16 pca-test pyca[4835]:     Metadata:
Aug 11 12:38:16 pca-test pyca[4835]:       encoder         : Lavc57.107.100 libmp3lame
Aug 11 12:39:14 pca-test pyca[4828]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:39:14 pca-test pyca[4828]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/agents/pca-test
Aug 11 12:39:14 pca-test pyca[4828]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:39:14 pca-test pyca[4828]: *   Trying Some.Public.IP.Address...
Aug 11 12:39:14 pca-test pyca[4828]: * TCP_NODELAY set
Aug 11 12:39:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:39:14 pca-test pyca[4828]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:39:14 pca-test pyca[4828]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:39:14 pca-test pyca[4828]: * ALPN, offering http/1.1
Aug 11 12:39:14 pca-test pyca[4828]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:39:14 pca-test pyca[4828]: * ALPN, server did not agree to a protocol
Aug 11 12:39:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:39:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:39:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:39:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:39:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:39:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:39:14 pca-test pyca[4828]: Content-Length: 0
Aug 11 12:39:14 pca-test pyca[4828]: #015
Aug 11 12:39:14 pca-test pyca[4828]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:39:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:39:14 GMT
Aug 11 12:39:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:39:14 pca-test pyca[4828]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:39:14 pca-test pyca[4828]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:39:14 pca-test pyca[4828]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:39:14 pca-test pyca[4828]: < Content-Length: 438
Aug 11 12:39:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:39:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:39:14 pca-test pyca[4828]: <
Aug 11 12:39:14 pca-test pyca[4828]: * Ignoring the response-body
Aug 11 12:39:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:39:14 pca-test pyca[4828]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/agents/pca-test'
Aug 11 12:39:14 pca-test pyca[4828]: * Found bundle for host <opencast-admin-server>: 0x18f8f80 [can pipeline]
Aug 11 12:39:14 pca-test pyca[4828]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:39:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:39:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:39:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:39:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:39:14 pca-test pyca[4828]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/agents/pca-test", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:39:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:39:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:39:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:39:14 pca-test pyca[4828]: Content-Length: 269
Aug 11 12:39:14 pca-test pyca[4828]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:39:14 pca-test pyca[4828]: #015
Aug 11 12:39:14 pca-test pyca[4828]: < HTTP/1.1 200 OK
Aug 11 12:39:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:39:14 GMT
Aug 11 12:39:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:39:14 pca-test pyca[4828]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:39:14 pca-test pyca[4828]: < Content-Length: 0
Aug 11 12:39:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:39:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:39:14 pca-test pyca[4828]: <
Aug 11 12:39:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:39:15 pca-test pyca[4840]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for scheduler: ['https://<opencast-admin-server>/recordings']
Aug 11 12:39:15 pca-test pyca[4840]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598351955000
Aug 11 12:39:15 pca-test pyca[4840]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:39:15 pca-test pyca[4840]: *   Trying Some.Public.IP.Address...
Aug 11 12:39:15 pca-test pyca[4840]: * TCP_NODELAY set
Aug 11 12:39:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:39:15 pca-test pyca[4840]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:39:15 pca-test pyca[4840]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:39:15 pca-test pyca[4840]: * ALPN, offering http/1.1
Aug 11 12:39:15 pca-test pyca[4840]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:39:15 pca-test pyca[4840]: * ALPN, server did not agree to a protocol
Aug 11 12:39:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:39:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598351955000 HTTP/1.1
Aug 11 12:39:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:39:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:39:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:39:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:39:15 pca-test pyca[4840]: #015
Aug 11 12:39:15 pca-test pyca[4840]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:39:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:39:15 GMT
Aug 11 12:39:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:39:15 pca-test pyca[4840]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:39:15 pca-test pyca[4840]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:39:15 pca-test pyca[4840]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:39:15 pca-test pyca[4840]: < Content-Length: 429
Aug 11 12:39:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:39:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:39:15 pca-test pyca[4840]: <
Aug 11 12:39:15 pca-test pyca[4840]: * Ignoring the response-body
Aug 11 12:39:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:39:15 pca-test pyca[4840]: * Issue another request to this URL: 'https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598351955000'
Aug 11 12:39:15 pca-test pyca[4840]: * Found bundle for host <opencast-admin-server>: 0x23e2230 [can pipeline]
Aug 11 12:39:15 pca-test pyca[4840]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:39:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:39:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:39:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598351955000 HTTP/1.1
Aug 11 12:39:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:39:15 pca-test pyca[4840]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/recordings/calendars?agentid=pca-test&cutoff=1598351955000", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:39:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:39:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:39:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:39:15 pca-test pyca[4840]: #015
Aug 11 12:39:15 pca-test pyca[4840]: < HTTP/1.1 200 OK
Aug 11 12:39:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:39:15 GMT
Aug 11 12:39:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:39:15 pca-test pyca[4840]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:39:15 pca-test pyca[4840]: < Content-Type: text/calendar;charset=UTF-8
Aug 11 12:39:15 pca-test pyca[4840]: < ETag: mod1597142243000
Aug 11 12:39:15 pca-test pyca[4840]: < Content-Length: 3196
Aug 11 12:39:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:39:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:39:15 pca-test pyca[4840]: <
Aug 11 12:39:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:39:15 pca-test pyca[4840]: [pyca.schedule:116:control_loop()] [INFO] Next scheduled recording: 2020-08-11 12:38:00
Aug 11 12:40:14 pca-test pyca[4828]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:40:14 pca-test pyca[4828]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/agents/pca-test
Aug 11 12:40:14 pca-test pyca[4828]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:40:14 pca-test pyca[4828]: *   Trying Some.Public.IP.Address...
Aug 11 12:40:14 pca-test pyca[4828]: * TCP_NODELAY set
Aug 11 12:40:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:40:14 pca-test pyca[4828]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:40:14 pca-test pyca[4828]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:40:14 pca-test pyca[4828]: * ALPN, offering http/1.1
Aug 11 12:40:14 pca-test pyca[4828]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:40:14 pca-test pyca[4828]: * ALPN, server did not agree to a protocol
Aug 11 12:40:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:40:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:40:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:40:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:40:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:40:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:40:14 pca-test pyca[4828]: Content-Length: 0
Aug 11 12:40:14 pca-test pyca[4828]: #015
Aug 11 12:40:14 pca-test pyca[4828]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:40:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:40:14 GMT
Aug 11 12:40:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:40:14 pca-test pyca[4828]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:40:14 pca-test pyca[4828]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:40:14 pca-test pyca[4828]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:40:14 pca-test pyca[4828]: < Content-Length: 438
Aug 11 12:40:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:40:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:40:14 pca-test pyca[4828]: <
Aug 11 12:40:14 pca-test pyca[4828]: * Ignoring the response-body
Aug 11 12:40:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:40:14 pca-test pyca[4828]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/agents/pca-test'
Aug 11 12:40:14 pca-test pyca[4828]: * Found bundle for host <opencast-admin-server>: 0x15d19c0 [can pipeline]
Aug 11 12:40:14 pca-test pyca[4828]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:40:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:40:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:40:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:40:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:40:14 pca-test pyca[4828]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/agents/pca-test", cnonce="v", nc=00000001, qop=auth, response="<…>"
Aug 11 12:40:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:40:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:40:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:40:14 pca-test pyca[4828]: Content-Length: 269
Aug 11 12:40:14 pca-test pyca[4828]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:40:14 pca-test pyca[4828]: #015
Aug 11 12:40:14 pca-test pyca[4828]: < HTTP/1.1 200 OK
Aug 11 12:40:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:40:14 GMT
Aug 11 12:40:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:40:14 pca-test pyca[4828]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:40:14 pca-test pyca[4828]: < Content-Length: 0
Aug 11 12:40:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:40:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:40:14 pca-test pyca[4828]: <
Aug 11 12:40:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:40:15 pca-test pyca[4840]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for scheduler: ['https://<opencast-admin-server>/recordings']
Aug 11 12:40:15 pca-test pyca[4840]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598352015000
Aug 11 12:40:15 pca-test pyca[4840]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:40:15 pca-test pyca[4840]: *   Trying Some.Public.IP.Address...
Aug 11 12:40:15 pca-test pyca[4840]: * TCP_NODELAY set
Aug 11 12:40:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:40:15 pca-test pyca[4840]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:40:15 pca-test pyca[4840]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:40:15 pca-test pyca[4840]: * ALPN, offering http/1.1
Aug 11 12:40:15 pca-test pyca[4840]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:40:15 pca-test pyca[4840]: * ALPN, server did not agree to a protocol
Aug 11 12:40:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:40:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598352015000 HTTP/1.1
Aug 11 12:40:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:40:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:40:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:40:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:40:15 pca-test pyca[4840]: #015
Aug 11 12:40:15 pca-test pyca[4840]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:40:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:40:15 GMT
Aug 11 12:40:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:40:15 pca-test pyca[4840]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:40:15 pca-test pyca[4840]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:40:15 pca-test pyca[4840]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:40:15 pca-test pyca[4840]: < Content-Length: 429
Aug 11 12:40:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:40:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:40:15 pca-test pyca[4840]: <
Aug 11 12:40:15 pca-test pyca[4840]: * Ignoring the response-body
Aug 11 12:40:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:40:15 pca-test pyca[4840]: * Issue another request to this URL: 'https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598352015000'
Aug 11 12:40:15 pca-test pyca[4840]: * Found bundle for host <opencast-admin-server>: 0x20e8cf0 [can pipeline]
Aug 11 12:40:15 pca-test pyca[4840]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:40:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:40:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:40:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598352015000 HTTP/1.1
Aug 11 12:40:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:40:15 pca-test pyca[4840]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/recordings/calendars?agentid=pca-test&cutoff=1598352015000", cnonce="<…>, nc=00000001, qop=auth, response="<…>"
Aug 11 12:40:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:40:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:40:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:40:15 pca-test pyca[4840]: #015
Aug 11 12:40:15 pca-test pyca[4840]: < HTTP/1.1 200 OK
Aug 11 12:40:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:40:15 GMT
Aug 11 12:40:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:40:15 pca-test pyca[4840]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:40:15 pca-test pyca[4840]: < Content-Type: text/calendar;charset=UTF-8
Aug 11 12:40:15 pca-test pyca[4840]: < ETag: mod1597142243000
Aug 11 12:40:15 pca-test pyca[4840]: < Content-Length: 3196
Aug 11 12:40:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:40:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:40:15 pca-test pyca[4840]: <
Aug 11 12:40:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:40:15 pca-test pyca[4840]: [pyca.schedule:116:control_loop()] [INFO] Next scheduled recording: 2020-08-11 12:38:00
Aug 11 12:41:14 pca-test pyca[4828]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:41:14 pca-test pyca[4828]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/agents/pca-test
Aug 11 12:41:14 pca-test pyca[4828]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:41:14 pca-test pyca[4828]: *   Trying Some.Public.IP.Address...
Aug 11 12:41:14 pca-test pyca[4828]: * TCP_NODELAY set
Aug 11 12:41:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:41:14 pca-test pyca[4828]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:41:14 pca-test pyca[4828]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:41:14 pca-test pyca[4828]: * ALPN, offering http/1.1
Aug 11 12:41:14 pca-test pyca[4828]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:41:14 pca-test pyca[4828]: * ALPN, server did not agree to a protocol
Aug 11 12:41:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:41:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:41:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:41:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:41:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:41:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:41:14 pca-test pyca[4828]: Content-Length: 0
Aug 11 12:41:14 pca-test pyca[4828]: #015
Aug 11 12:41:14 pca-test pyca[4828]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:41:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:41:14 GMT
Aug 11 12:41:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:41:14 pca-test pyca[4828]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:41:14 pca-test pyca[4828]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:41:14 pca-test pyca[4828]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:41:14 pca-test pyca[4828]: < Content-Length: 438
Aug 11 12:41:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:41:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:41:14 pca-test pyca[4828]: <
Aug 11 12:41:14 pca-test pyca[4828]: * Ignoring the response-body
Aug 11 12:41:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:41:14 pca-test pyca[4828]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/agents/pca-test'
Aug 11 12:41:14 pca-test pyca[4828]: * Found bundle for host <opencast-admin-server>: 0x1732a00 [can pipeline]
Aug 11 12:41:14 pca-test pyca[4828]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:41:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:41:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:41:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:41:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:41:14 pca-test pyca[4828]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/agents/pca-test", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:41:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:41:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:41:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:41:14 pca-test pyca[4828]: Content-Length: 269
Aug 11 12:41:14 pca-test pyca[4828]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:41:14 pca-test pyca[4828]: #015
Aug 11 12:41:14 pca-test pyca[4828]: < HTTP/1.1 200 OK
Aug 11 12:41:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:41:14 GMT
Aug 11 12:41:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:41:14 pca-test pyca[4828]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:41:14 pca-test pyca[4828]: < Content-Length: 0
Aug 11 12:41:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:41:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:41:14 pca-test pyca[4828]: <
Aug 11 12:41:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:41:15 pca-test pyca[4840]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for scheduler: ['https://<opencast-admin-server>/recordings']
Aug 11 12:41:15 pca-test pyca[4840]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598352075000
Aug 11 12:41:15 pca-test pyca[4840]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:41:15 pca-test pyca[4840]: *   Trying Some.Public.IP.Address...
Aug 11 12:41:15 pca-test pyca[4840]: * TCP_NODELAY set
Aug 11 12:41:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:41:15 pca-test pyca[4840]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:41:15 pca-test pyca[4840]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:41:15 pca-test pyca[4840]: * ALPN, offering http/1.1
Aug 11 12:41:15 pca-test pyca[4840]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:41:15 pca-test pyca[4840]: * ALPN, server did not agree to a protocol
Aug 11 12:41:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:41:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598352075000 HTTP/1.1
Aug 11 12:41:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:41:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:41:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:41:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:41:15 pca-test pyca[4840]: #015
Aug 11 12:41:15 pca-test pyca[4840]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:41:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:41:15 GMT
Aug 11 12:41:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:41:15 pca-test pyca[4840]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:41:15 pca-test pyca[4840]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:41:15 pca-test pyca[4840]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:41:15 pca-test pyca[4840]: < Content-Length: 429
Aug 11 12:41:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:41:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:41:15 pca-test pyca[4840]: <
Aug 11 12:41:15 pca-test pyca[4840]: * Ignoring the response-body
Aug 11 12:41:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:41:15 pca-test pyca[4840]: * Issue another request to this URL: 'https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598352075000'
Aug 11 12:41:15 pca-test pyca[4840]: * Found bundle for host <opencast-admin-server>: 0x20bfc50 [can pipeline]
Aug 11 12:41:15 pca-test pyca[4840]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:41:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:41:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:41:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598352075000 HTTP/1.1
Aug 11 12:41:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:41:15 pca-test pyca[4840]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/recordings/calendars?agentid=pca-test&cutoff=1598352075000", cnonce="v", nc=00000001, qop=auth, response="<…>"
Aug 11 12:41:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:41:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:41:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:41:15 pca-test pyca[4840]: #015
Aug 11 12:41:15 pca-test pyca[4840]: < HTTP/1.1 200 OK
Aug 11 12:41:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:41:15 GMT
Aug 11 12:41:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:41:15 pca-test pyca[4840]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:41:15 pca-test pyca[4840]: < Content-Type: text/calendar;charset=UTF-8
Aug 11 12:41:15 pca-test pyca[4840]: < ETag: mod1597142243000
Aug 11 12:41:15 pca-test pyca[4840]: < Content-Length: 3196
Aug 11 12:41:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:41:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:41:15 pca-test pyca[4840]: <
Aug 11 12:41:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:41:15 pca-test pyca[4840]: [pyca.schedule:116:control_loop()] [INFO] Next scheduled recording: 2020-08-11 12:38:00
Aug 11 12:42:14 pca-test pyca[4828]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:42:14 pca-test pyca[4828]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/agents/pca-test
Aug 11 12:42:14 pca-test pyca[4828]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:42:14 pca-test pyca[4828]: *   Trying Some.Public.IP.Address...
Aug 11 12:42:14 pca-test pyca[4828]: * TCP_NODELAY set
Aug 11 12:42:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:42:14 pca-test pyca[4828]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:42:14 pca-test pyca[4828]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:42:14 pca-test pyca[4828]: * ALPN, offering http/1.1
Aug 11 12:42:14 pca-test pyca[4828]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:42:14 pca-test pyca[4828]: * ALPN, server did not agree to a protocol
Aug 11 12:42:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:42:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:42:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:42:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:42:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:42:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:42:14 pca-test pyca[4828]: Content-Length: 0
Aug 11 12:42:14 pca-test pyca[4828]: #015
Aug 11 12:42:14 pca-test pyca[4828]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:42:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:42:14 GMT
Aug 11 12:42:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:42:14 pca-test pyca[4828]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:42:14 pca-test pyca[4828]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:42:14 pca-test pyca[4828]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:42:14 pca-test pyca[4828]: < Content-Length: 438
Aug 11 12:42:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:42:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:42:14 pca-test pyca[4828]: <
Aug 11 12:42:14 pca-test pyca[4828]: * Ignoring the response-body
Aug 11 12:42:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:42:14 pca-test pyca[4828]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/agents/pca-test'
Aug 11 12:42:14 pca-test pyca[4828]: * Found bundle for host <opencast-admin-server>: 0x189cdd0 [can pipeline]
Aug 11 12:42:14 pca-test pyca[4828]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:42:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:42:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:42:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:42:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:42:14 pca-test pyca[4828]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/agents/pca-test", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:42:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:42:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:42:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:42:14 pca-test pyca[4828]: Content-Length: 269
Aug 11 12:42:14 pca-test pyca[4828]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:42:14 pca-test pyca[4828]: #015
Aug 11 12:42:14 pca-test pyca[4828]: < HTTP/1.1 200 OK
Aug 11 12:42:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:42:14 GMT
Aug 11 12:42:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:42:14 pca-test pyca[4828]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:42:14 pca-test pyca[4828]: < Content-Length: 0
Aug 11 12:42:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:42:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:42:14 pca-test pyca[4828]: <
Aug 11 12:42:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:42:15 pca-test pyca[4840]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for scheduler: ['https://<opencast-admin-server>/recordings']
Aug 11 12:42:15 pca-test pyca[4840]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598352135000
Aug 11 12:42:15 pca-test pyca[4840]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:42:15 pca-test pyca[4840]: *   Trying Some.Public.IP.Address...
Aug 11 12:42:15 pca-test pyca[4840]: * TCP_NODELAY set
Aug 11 12:42:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:42:15 pca-test pyca[4840]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:42:15 pca-test pyca[4840]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:42:15 pca-test pyca[4840]: * ALPN, offering http/1.1
Aug 11 12:42:15 pca-test pyca[4840]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:42:15 pca-test pyca[4840]: * ALPN, server did not agree to a protocol
Aug 11 12:42:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:42:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598352135000 HTTP/1.1
Aug 11 12:42:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:42:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:42:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:42:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:42:15 pca-test pyca[4840]: #015
Aug 11 12:42:15 pca-test pyca[4840]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:42:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:42:15 GMT
Aug 11 12:42:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:42:15 pca-test pyca[4840]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:42:15 pca-test pyca[4840]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:42:15 pca-test pyca[4840]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:42:15 pca-test pyca[4840]: < Content-Length: 429
Aug 11 12:42:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:42:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:42:15 pca-test pyca[4840]: <
Aug 11 12:42:15 pca-test pyca[4840]: * Ignoring the response-body
Aug 11 12:42:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:42:15 pca-test pyca[4840]: * Issue another request to this URL: 'https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598352135000'
Aug 11 12:42:15 pca-test pyca[4840]: * Found bundle for host <opencast-admin-server>: 0x25800c0 [can pipeline]
Aug 11 12:42:15 pca-test pyca[4840]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:42:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:42:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:42:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598352135000 HTTP/1.1
Aug 11 12:42:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:42:15 pca-test pyca[4840]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="v", uri="/recordings/calendars?agentid=pca-test&cutoff=1598352135000", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:42:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:42:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:42:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:42:15 pca-test pyca[4840]: #015
Aug 11 12:42:15 pca-test pyca[4840]: < HTTP/1.1 200 OK
Aug 11 12:42:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:42:15 GMT
Aug 11 12:42:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:42:15 pca-test pyca[4840]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:42:15 pca-test pyca[4840]: < Content-Type: text/calendar;charset=UTF-8
Aug 11 12:42:15 pca-test pyca[4840]: < ETag: mod1597142243000
Aug 11 12:42:15 pca-test pyca[4840]: < Content-Length: 3196
Aug 11 12:42:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:42:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:42:15 pca-test pyca[4840]: <
Aug 11 12:42:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:42:15 pca-test pyca[4840]: [pyca.schedule:116:control_loop()] [INFO] Next scheduled recording: 2020-08-11 12:38:00
Aug 11 12:43:00 pca-test pyca[4835]: frame= 7100 fps= 25 q=9.3 Lsize=    9872kB time=00:04:44.00 bitrate= 284.8kbits/s speed=   1x
Aug 11 12:43:00 pca-test pyca[4835]: video:7208kB audio:2219kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 4.718512%
Aug 11 12:43:00 pca-test pyca[4835]: [pyca.capture:77:start_capture()] [INFO] Set 078fcc4b-f292-417e-a640-9058b580119c to finished recording
Aug 11 12:43:00 pca-test pyca[4835]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:43:00 pca-test pyca[4835]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c
Aug 11 12:43:00 pca-test pyca[4835]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:00 pca-test pyca[4835]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:00 pca-test pyca[4835]: * TCP_NODELAY set
Aug 11 12:43:00 pca-test pyca[4835]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:00 pca-test pyca[4835]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:00 pca-test pyca[4835]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:00 pca-test pyca[4835]: * ALPN, offering http/1.1
Aug 11 12:43:00 pca-test pyca[4835]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:00 pca-test pyca[4835]: * ALPN, server did not agree to a protocol
Aug 11 12:43:00 pca-test pyca[4835]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:00 pca-test pyca[4835]: > POST /capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c HTTP/1.1
Aug 11 12:43:00 pca-test pyca[4835]: Host: <opencast-admin-server>
Aug 11 12:43:00 pca-test pyca[4835]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:00 pca-test pyca[4835]: Accept: */*
Aug 11 12:43:00 pca-test pyca[4835]: X-Requested-Auth: Digest
Aug 11 12:43:00 pca-test pyca[4835]: Content-Length: 0
Aug 11 12:43:00 pca-test pyca[4835]: #015
Aug 11 12:43:00 pca-test pyca[4835]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:00 pca-test pyca[4835]: < Date: Tue, 11 Aug 2020 10:43:00 GMT
Aug 11 12:43:00 pca-test pyca[4835]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:00 pca-test pyca[4835]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:00 pca-test pyca[4835]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:00 pca-test pyca[4835]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:00 pca-test pyca[4835]: < Content-Length: 470
Aug 11 12:43:00 pca-test pyca[4835]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:00 pca-test pyca[4835]: < Access-Control-Allow-Origin: *
Aug 11 12:43:00 pca-test pyca[4835]: <
Aug 11 12:43:00 pca-test pyca[4835]: * Ignoring the response-body
Aug 11 12:43:00 pca-test pyca[4835]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:00 pca-test pyca[4835]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c'
Aug 11 12:43:00 pca-test pyca[4835]: * Found bundle for host <opencast-admin-server>: 0x1c3fa10 [can pipeline]
Aug 11 12:43:00 pca-test pyca[4835]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:00 pca-test pyca[4835]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:00 pca-test pyca[4835]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:00 pca-test pyca[4835]: > POST /capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c HTTP/1.1
Aug 11 12:43:00 pca-test pyca[4835]: Host: <opencast-admin-server>
Aug 11 12:43:00 pca-test pyca[4835]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:00 pca-test pyca[4835]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:00 pca-test pyca[4835]: Accept: */*
Aug 11 12:43:00 pca-test pyca[4835]: X-Requested-Auth: Digest
Aug 11 12:43:00 pca-test pyca[4835]: Content-Length: 156
Aug 11 12:43:00 pca-test pyca[4835]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:43:00 pca-test pyca[4835]: #015
Aug 11 12:43:00 pca-test pyca[4835]: < HTTP/1.1 200 OK
Aug 11 12:43:00 pca-test pyca[4835]: < Date: Tue, 11 Aug 2020 10:43:00 GMT
Aug 11 12:43:00 pca-test pyca[4835]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:00 pca-test pyca[4835]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:00 pca-test pyca[4835]: < Content-Type: application/octet-stream
Aug 11 12:43:00 pca-test pyca[4835]: < Content-Length: 60
Aug 11 12:43:00 pca-test pyca[4835]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:00 pca-test pyca[4835]: < Access-Control-Allow-Origin: *
Aug 11 12:43:00 pca-test pyca[4835]: <
Aug 11 12:43:00 pca-test pyca[4835]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:00 pca-test pyca[4835]: [pyca.utils:179:recording_state()] [INFO] 078fcc4b-f292-417e-a640-9058b580119c set to capture_finished
Aug 11 12:43:00 pca-test pyca[4835]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:43:00 pca-test pyca[4835]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/agents/pca-test
Aug 11 12:43:00 pca-test pyca[4835]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:00 pca-test pyca[4835]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:00 pca-test pyca[4835]: * TCP_NODELAY set
Aug 11 12:43:00 pca-test pyca[4835]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:00 pca-test pyca[4835]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:00 pca-test pyca[4835]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:00 pca-test pyca[4835]: * ALPN, offering http/1.1
Aug 11 12:43:00 pca-test pyca[4835]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:00 pca-test pyca[4835]: * ALPN, server did not agree to a protocol
Aug 11 12:43:00 pca-test pyca[4835]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:00 pca-test pyca[4835]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:43:00 pca-test pyca[4835]: Host: <opencast-admin-server>
Aug 11 12:43:00 pca-test pyca[4835]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:00 pca-test pyca[4835]: Accept: */*
Aug 11 12:43:00 pca-test pyca[4835]: X-Requested-Auth: Digest
Aug 11 12:43:00 pca-test pyca[4835]: Content-Length: 0
Aug 11 12:43:00 pca-test pyca[4835]: #015
Aug 11 12:43:00 pca-test pyca[4835]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:00 pca-test pyca[4835]: < Date: Tue, 11 Aug 2020 10:43:00 GMT
Aug 11 12:43:00 pca-test pyca[4835]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:00 pca-test pyca[4835]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:00 pca-test pyca[4835]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:00 pca-test pyca[4835]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:00 pca-test pyca[4835]: < Content-Length: 438
Aug 11 12:43:00 pca-test pyca[4835]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:00 pca-test pyca[4835]: < Access-Control-Allow-Origin: *
Aug 11 12:43:00 pca-test pyca[4835]: <
Aug 11 12:43:00 pca-test pyca[4835]: * Ignoring the response-body
Aug 11 12:43:00 pca-test pyca[4835]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:00 pca-test pyca[4835]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/agents/pca-test'
Aug 11 12:43:00 pca-test pyca[4835]: * Found bundle for host <opencast-admin-server>: 0x1689c00 [can pipeline]
Aug 11 12:43:00 pca-test pyca[4835]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:00 pca-test pyca[4835]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:00 pca-test pyca[4835]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:00 pca-test pyca[4835]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:43:00 pca-test pyca[4835]: Host: <opencast-admin-server>
Aug 11 12:43:00 pca-test pyca[4835]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/agents/pca-test", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:00 pca-test pyca[4835]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:00 pca-test pyca[4835]: Accept: */*
Aug 11 12:43:00 pca-test pyca[4835]: X-Requested-Auth: Digest
Aug 11 12:43:00 pca-test pyca[4835]: Content-Length: 264
Aug 11 12:43:00 pca-test pyca[4835]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:43:00 pca-test pyca[4835]: #015
Aug 11 12:43:00 pca-test pyca[4835]: < HTTP/1.1 200 OK
Aug 11 12:43:00 pca-test pyca[4835]: < Date: Tue, 11 Aug 2020 10:43:00 GMT
Aug 11 12:43:00 pca-test pyca[4835]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:00 pca-test pyca[4835]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:00 pca-test pyca[4835]: < Content-Type: text/html; charset=UTF-8
Aug 11 12:43:00 pca-test pyca[4835]: < Content-Length: 20
Aug 11 12:43:00 pca-test pyca[4835]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:00 pca-test pyca[4835]: < Access-Control-Allow-Origin: *
Aug 11 12:43:00 pca-test pyca[4835]: <
Aug 11 12:43:00 pca-test pyca[4835]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:00 pca-test pyca[4835]: [pyca.utils:158:register_ca()] [INFO] pca-test set to idle
Aug 11 12:43:00 pca-test pyca[4835]: [pyca.capture:82:start_capture()] [INFO] Finished recording
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:01 pca-test pyca[4831]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:01 pca-test pyca[4831]: * TCP_NODELAY set
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:01 pca-test pyca[4831]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:01 pca-test pyca[4831]: * ALPN, offering http/1.1
Aug 11 12:43:01 pca-test pyca[4831]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:01 pca-test pyca[4831]: * ALPN, server did not agree to a protocol
Aug 11 12:43:01 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:01 pca-test pyca[4831]: > POST /capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c HTTP/1.1
Aug 11 12:43:01 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:01 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:01 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:01 pca-test pyca[4831]: Content-Length: 0
Aug 11 12:43:01 pca-test pyca[4831]: #015
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:01 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:01 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:01 pca-test pyca[4831]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:01 pca-test pyca[4831]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Length: 470
Aug 11 12:43:01 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:01 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:01 pca-test pyca[4831]: <
Aug 11 12:43:01 pca-test pyca[4831]: * Ignoring the response-body
Aug 11 12:43:01 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:01 pca-test pyca[4831]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c'
Aug 11 12:43:01 pca-test pyca[4831]: * Found bundle for host <opencast-admin-server>: 0x24d1bb0 [can pipeline]
Aug 11 12:43:01 pca-test pyca[4831]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:01 pca-test pyca[4831]: > POST /capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c HTTP/1.1
Aug 11 12:43:01 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:01 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:01 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:01 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:01 pca-test pyca[4831]: Content-Length: 149
Aug 11 12:43:01 pca-test pyca[4831]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:43:01 pca-test pyca[4831]: #015
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 200 OK
Aug 11 12:43:01 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:01 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:01 pca-test pyca[4831]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Type: application/octet-stream
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Length: 53
Aug 11 12:43:01 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:01 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:01 pca-test pyca[4831]: <
Aug 11 12:43:01 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:179:recording_state()] [INFO] 078fcc4b-f292-417e-a640-9058b580119c set to uploading
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for ingest: None
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/services/available.json?serviceType=org.opencastproject.ingest
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:01 pca-test pyca[4831]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:01 pca-test pyca[4831]: * TCP_NODELAY set
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:01 pca-test pyca[4831]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:01 pca-test pyca[4831]: * ALPN, offering http/1.1
Aug 11 12:43:01 pca-test pyca[4831]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:01 pca-test pyca[4831]: * ALPN, server did not agree to a protocol
Aug 11 12:43:01 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:01 pca-test pyca[4831]: > GET /services/available.json?serviceType=org.opencastproject.ingest HTTP/1.1
Aug 11 12:43:01 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:01 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:01 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:01 pca-test pyca[4831]: #015
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:01 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:01 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:01 pca-test pyca[4831]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:01 pca-test pyca[4831]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Length: 432
Aug 11 12:43:01 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:01 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:01 pca-test pyca[4831]: <
Aug 11 12:43:01 pca-test pyca[4831]: * Ignoring the response-body
Aug 11 12:43:01 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:01 pca-test pyca[4831]: * Issue another request to this URL: 'https://<opencast-admin-server>/services/available.json?serviceType=org.opencastproject.ingest'
Aug 11 12:43:01 pca-test pyca[4831]: * Found bundle for host <opencast-admin-server>: 0x1d23f10 [can pipeline]
Aug 11 12:43:01 pca-test pyca[4831]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:01 pca-test pyca[4831]: > GET /services/available.json?serviceType=org.opencastproject.ingest HTTP/1.1
Aug 11 12:43:01 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/services/available.json?serviceType=org.opencastproject.ingest", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:01 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:01 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:01 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:01 pca-test pyca[4831]: #015
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 200 OK
Aug 11 12:43:01 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:01 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:01 pca-test pyca[4831]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Type: application/json
Aug 11 12:43:01 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:01 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:01 pca-test pyca[4831]: < Transfer-Encoding: chunked
Aug 11 12:43:01 pca-test pyca[4831]: <
Aug 11 12:43:01 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:83:get_service()] [INFO] Endpoint for org.opencastproject.ingest: https://<opencast-admin-server>/ingest
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:83:get_service()] [INFO] Endpoint for org.opencastproject.ingest: http://<opencast-ingest-server>:8080/ingest
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:125:service()] [DEBUG] Updates service URL for ingest: ['https://<opencast-admin-server>/ingest', 'http://<opencast-ingest-server>:8080/ingest']
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.ingest:58:ingest()] [INFO] Selecting ingest service to use: https://<opencast-admin-server>/ingest
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.ingest:61:ingest()] [INFO] Creating new mediapackage
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/ingest/createMediaPackage
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:01 pca-test pyca[4831]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:01 pca-test pyca[4831]: * TCP_NODELAY set
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:01 pca-test pyca[4831]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:01 pca-test pyca[4831]: * ALPN, offering http/1.1
Aug 11 12:43:01 pca-test pyca[4831]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:01 pca-test pyca[4831]: * ALPN, server did not agree to a protocol
Aug 11 12:43:01 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:01 pca-test pyca[4831]: > GET /ingest/createMediaPackage HTTP/1.1
Aug 11 12:43:01 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:01 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:01 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:01 pca-test pyca[4831]: #015
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:01 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:01 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:01 pca-test pyca[4831]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:01 pca-test pyca[4831]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Length: 434
Aug 11 12:43:01 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:01 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:01 pca-test pyca[4831]: <
Aug 11 12:43:01 pca-test pyca[4831]: * Ignoring the response-body
Aug 11 12:43:01 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:01 pca-test pyca[4831]: * Issue another request to this URL: 'https://<opencast-admin-server>/ingest/createMediaPackage'
Aug 11 12:43:01 pca-test pyca[4831]: * Found bundle for host <opencast-admin-server>: 0x2f9d5d0 [can pipeline]
Aug 11 12:43:01 pca-test pyca[4831]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:01 pca-test pyca[4831]: > GET /ingest/createMediaPackage HTTP/1.1
Aug 11 12:43:01 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/ingest/createMediaPackage", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:01 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:01 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:01 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:01 pca-test pyca[4831]: #015
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 200 OK
Aug 11 12:43:01 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:01 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:01 pca-test pyca[4831]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Type: text/xml
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Length: 251
Aug 11 12:43:01 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:01 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:01 pca-test pyca[4831]: <
Aug 11 12:43:01 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.ingest:75:ingest()] [INFO] Adding episode DC catalog
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/ingest/addDCCatalog
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:01 pca-test pyca[4831]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:01 pca-test pyca[4831]: * TCP_NODELAY set
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:01 pca-test pyca[4831]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:01 pca-test pyca[4831]: * ALPN, offering http/1.1
Aug 11 12:43:01 pca-test pyca[4831]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:01 pca-test pyca[4831]: * ALPN, server did not agree to a protocol
Aug 11 12:43:01 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:01 pca-test pyca[4831]: > POST /ingest/addDCCatalog HTTP/1.1
Aug 11 12:43:01 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:01 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:01 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:01 pca-test pyca[4831]: Content-Length: 0
Aug 11 12:43:01 pca-test pyca[4831]: #015
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:01 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:01 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:01 pca-test pyca[4831]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:01 pca-test pyca[4831]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Length: 428
Aug 11 12:43:01 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:01 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:01 pca-test pyca[4831]: <
Aug 11 12:43:01 pca-test pyca[4831]: * Ignoring the response-body
Aug 11 12:43:01 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:01 pca-test pyca[4831]: * Issue another request to this URL: 'https://<opencast-admin-server>/ingest/addDCCatalog'
Aug 11 12:43:01 pca-test pyca[4831]: * Found bundle for host <opencast-admin-server>: 0x2f9d5d0 [can pipeline]
Aug 11 12:43:01 pca-test pyca[4831]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:01 pca-test pyca[4831]: > POST /ingest/addDCCatalog HTTP/1.1
Aug 11 12:43:01 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/ingest/addDCCatalog", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:01 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:01 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:01 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:01 pca-test pyca[4831]: Content-Length: 1319
Aug 11 12:43:01 pca-test pyca[4831]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:43:01 pca-test pyca[4831]: Expect: 100-continue
Aug 11 12:43:01 pca-test pyca[4831]: #015
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 100 Continue
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 200 OK
Aug 11 12:43:01 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:01 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:01 pca-test pyca[4831]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Type: text/xml
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Length: 543
Aug 11 12:43:01 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:01 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:01 pca-test pyca[4831]: <
Aug 11 12:43:01 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.ingest:75:ingest()] [INFO] Adding series DC catalog
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/ingest/addDCCatalog
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:01 pca-test pyca[4831]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:01 pca-test pyca[4831]: * TCP_NODELAY set
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:01 pca-test pyca[4831]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:01 pca-test pyca[4831]: * ALPN, offering http/1.1
Aug 11 12:43:01 pca-test pyca[4831]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:01 pca-test pyca[4831]: * ALPN, server did not agree to a protocol
Aug 11 12:43:01 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:01 pca-test pyca[4831]: > POST /ingest/addDCCatalog HTTP/1.1
Aug 11 12:43:01 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:01 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:01 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:01 pca-test pyca[4831]: Content-Length: 0
Aug 11 12:43:01 pca-test pyca[4831]: #015
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:01 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:01 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:01 pca-test pyca[4831]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:01 pca-test pyca[4831]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Length: 428
Aug 11 12:43:01 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:01 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:01 pca-test pyca[4831]: <
Aug 11 12:43:01 pca-test pyca[4831]: * Ignoring the response-body
Aug 11 12:43:01 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:01 pca-test pyca[4831]: * Issue another request to this URL: 'https://<opencast-admin-server>/ingest/addDCCatalog'
Aug 11 12:43:01 pca-test pyca[4831]: * Found bundle for host <opencast-admin-server>: 0x269dd90 [can pipeline]
Aug 11 12:43:01 pca-test pyca[4831]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:01 pca-test pyca[4831]: > POST /ingest/addDCCatalog HTTP/1.1
Aug 11 12:43:01 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:01 pca-test pyca[4831]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/ingest/addDCCatalog", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:01 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:01 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:01 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:01 pca-test pyca[4831]: Content-Length: 1510
Aug 11 12:43:01 pca-test pyca[4831]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:43:01 pca-test pyca[4831]: Expect: 100-continue
Aug 11 12:43:01 pca-test pyca[4831]: #015
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 100 Continue
Aug 11 12:43:01 pca-test pyca[4831]: < HTTP/1.1 200 OK
Aug 11 12:43:01 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:01 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:01 pca-test pyca[4831]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Type: text/xml
Aug 11 12:43:01 pca-test pyca[4831]: < Content-Length: 824
Aug 11 12:43:01 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:01 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:01 pca-test pyca[4831]: <
Aug 11 12:43:01 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.ingest:83:ingest()] [INFO] Adding track (presenter/source -> /var/lib/pyca/recordings/recording-1597142280-078fcc4b-f292-417e-a640-9058b580119c/recording-1597142280-078fcc4b-f292-417e-a640-9058b580119c.webm)
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/ingest/addTrack
Aug 11 12:43:01 pca-test pyca[4831]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:01 pca-test pyca[4831]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:01 pca-test pyca[4831]: * TCP_NODELAY set
Aug 11 12:43:01 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:01 pca-test pyca[4831]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:02 pca-test pyca[4831]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:02 pca-test pyca[4831]: * ALPN, offering http/1.1
Aug 11 12:43:02 pca-test pyca[4831]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:02 pca-test pyca[4831]: * ALPN, server did not agree to a protocol
Aug 11 12:43:02 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:02 pca-test pyca[4831]: * stopped the pause stream!
Aug 11 12:43:02 pca-test pyca[4831]: * Closing connection 0
Aug 11 12:43:02 pca-test pyca[4831]: [pyca.ingest:120:safe_start_ingest()] [ERROR] Something went wrong during the upload
Aug 11 12:43:02 pca-test pyca[4831]: [pyca.ingest:121:safe_start_ingest()] [ERROR] Traceback (most recent call last):
Aug 11 12:43:02 pca-test pyca[4831]:   File "/usr/lib/python3/dist-packages/pyca/ingest.py", line 118, in safe_start_ingest
Aug 11 12:43:02 pca-test pyca[4831]:     ingest(event)
Aug 11 12:43:02 pca-test pyca[4831]:   File "/usr/lib/python3/dist-packages/pyca/ingest.py", line 87, in ingest
Aug 11 12:43:02 pca-test pyca[4831]:     mediapackage = http_request(service_url + '/addTrack', fields)
Aug 11 12:43:02 pca-test pyca[4831]:   File "/usr/lib/python3/dist-packages/pyca/utils.py", line 64, in http_request
Aug 11 12:43:02 pca-test pyca[4831]:     curl.perform()
Aug 11 12:43:02 pca-test pyca[4831]: pycurl.error: (26, '')
Aug 11 12:43:02 pca-test pyca[4831]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:43:02 pca-test pyca[4831]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c
Aug 11 12:43:02 pca-test pyca[4831]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:02 pca-test pyca[4831]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:02 pca-test pyca[4831]: * TCP_NODELAY set
Aug 11 12:43:02 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:02 pca-test pyca[4831]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:02 pca-test pyca[4831]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:02 pca-test pyca[4831]: * ALPN, offering http/1.1
Aug 11 12:43:02 pca-test pyca[4831]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:02 pca-test pyca[4831]: * ALPN, server did not agree to a protocol
Aug 11 12:43:02 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:02 pca-test pyca[4831]: > POST /capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c HTTP/1.1
Aug 11 12:43:02 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:02 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:02 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:02 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:02 pca-test pyca[4831]: Content-Length: 0
Aug 11 12:43:02 pca-test pyca[4831]: #015
Aug 11 12:43:02 pca-test pyca[4831]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:02 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:02 GMT
Aug 11 12:43:02 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:02 pca-test pyca[4831]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:02 pca-test pyca[4831]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:02 pca-test pyca[4831]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:02 pca-test pyca[4831]: < Content-Length: 470
Aug 11 12:43:02 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:02 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:02 pca-test pyca[4831]: <
Aug 11 12:43:02 pca-test pyca[4831]: * Ignoring the response-body
Aug 11 12:43:02 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:02 pca-test pyca[4831]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c'
Aug 11 12:43:02 pca-test pyca[4831]: * Found bundle for host <opencast-admin-server>: 0x24597e0 [can pipeline]
Aug 11 12:43:02 pca-test pyca[4831]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:02 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:02 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:02 pca-test pyca[4831]: > POST /capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c HTTP/1.1
Aug 11 12:43:02 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:02 pca-test pyca[4831]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/recordings/078fcc4b-f292-417e-a640-9058b580119c", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:02 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:02 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:02 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:02 pca-test pyca[4831]: Content-Length: 152
Aug 11 12:43:02 pca-test pyca[4831]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:43:02 pca-test pyca[4831]: #015
Aug 11 12:43:02 pca-test pyca[4831]: < HTTP/1.1 200 OK
Aug 11 12:43:02 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:02 GMT
Aug 11 12:43:02 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:02 pca-test pyca[4831]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:02 pca-test pyca[4831]: < Content-Type: application/octet-stream
Aug 11 12:43:02 pca-test pyca[4831]: < Content-Length: 56
Aug 11 12:43:02 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:02 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:02 pca-test pyca[4831]: <
Aug 11 12:43:02 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:02 pca-test pyca[4831]: [pyca.utils:179:recording_state()] [INFO] 078fcc4b-f292-417e-a640-9058b580119c set to upload_error
Aug 11 12:43:02 pca-test pyca[4831]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:43:02 pca-test pyca[4831]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/agents/pca-test
Aug 11 12:43:02 pca-test pyca[4831]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:02 pca-test pyca[4831]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:02 pca-test pyca[4831]: * TCP_NODELAY set
Aug 11 12:43:02 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:02 pca-test pyca[4831]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:02 pca-test pyca[4831]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:02 pca-test pyca[4831]: * ALPN, offering http/1.1
Aug 11 12:43:02 pca-test pyca[4831]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384
Aug 11 12:43:02 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:02 pca-test pyca[4831]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:43:02 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:02 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:02 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:02 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:02 pca-test pyca[4831]: Content-Length: 0
Aug 11 12:43:02 pca-test pyca[4831]: #015
Aug 11 12:43:02 pca-test pyca[4831]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:02 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:02 GMT
Aug 11 12:43:02 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:02 pca-test pyca[4831]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:02 pca-test pyca[4831]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:02 pca-test pyca[4831]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:02 pca-test pyca[4831]: < Content-Length: 438
Aug 11 12:43:02 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:02 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:02 pca-test pyca[4831]: <
Aug 11 12:43:02 pca-test pyca[4831]: * Ignoring the response-body
Aug 11 12:43:02 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:02 pca-test pyca[4831]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/agents/pca-test'
Aug 11 12:43:02 pca-test pyca[4831]: * Found bundle for host <opencast-admin-server>: 0x1fb9590 [can pipeline]
Aug 11 12:43:02 pca-test pyca[4831]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:02 pca-test pyca[4831]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:02 pca-test pyca[4831]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:02 pca-test pyca[4831]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:43:02 pca-test pyca[4831]: Host: <opencast-admin-server>
Aug 11 12:43:02 pca-test pyca[4831]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/agents/pca-test", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:02 pca-test pyca[4831]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:02 pca-test pyca[4831]: Accept: */*
Aug 11 12:43:02 pca-test pyca[4831]: X-Requested-Auth: Digest
Aug 11 12:43:02 pca-test pyca[4831]: Content-Length: 264
Aug 11 12:43:02 pca-test pyca[4831]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:43:02 pca-test pyca[4831]: #015
Aug 11 12:43:02 pca-test pyca[4831]: < HTTP/1.1 200 OK
Aug 11 12:43:02 pca-test pyca[4831]: < Date: Tue, 11 Aug 2020 10:43:02 GMT
Aug 11 12:43:02 pca-test pyca[4831]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:02 pca-test pyca[4831]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:02 pca-test pyca[4831]: < Content-Length: 0
Aug 11 12:43:02 pca-test pyca[4831]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:02 pca-test pyca[4831]: < Access-Control-Allow-Origin: *
Aug 11 12:43:02 pca-test pyca[4831]: <
Aug 11 12:43:02 pca-test pyca[4831]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:14 pca-test pyca[4828]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for capture.admin: ['https://<opencast-admin-server>/capture-admin']
Aug 11 12:43:14 pca-test pyca[4828]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/capture-admin/agents/pca-test
Aug 11 12:43:14 pca-test pyca[4828]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:14 pca-test pyca[4828]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:14 pca-test pyca[4828]: * TCP_NODELAY set
Aug 11 12:43:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:14 pca-test pyca[4828]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:14 pca-test pyca[4828]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:14 pca-test pyca[4828]: * ALPN, offering http/1.1
Aug 11 12:43:14 pca-test pyca[4828]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:14 pca-test pyca[4828]: * ALPN, server did not agree to a protocol
Aug 11 12:43:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:43:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:43:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:43:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:43:14 pca-test pyca[4828]: Content-Length: 0
Aug 11 12:43:14 pca-test pyca[4828]: #015
Aug 11 12:43:14 pca-test pyca[4828]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:43:14 GMT
Aug 11 12:43:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:14 pca-test pyca[4828]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:14 pca-test pyca[4828]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:14 pca-test pyca[4828]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:14 pca-test pyca[4828]: < Content-Length: 438
Aug 11 12:43:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:43:14 pca-test pyca[4828]: <
Aug 11 12:43:14 pca-test pyca[4828]: * Ignoring the response-body
Aug 11 12:43:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:14 pca-test pyca[4828]: * Issue another request to this URL: 'https://<opencast-admin-server>/capture-admin/agents/pca-test'
Aug 11 12:43:14 pca-test pyca[4828]: * Found bundle for host <opencast-admin-server>: 0x16cd1e0 [can pipeline]
Aug 11 12:43:14 pca-test pyca[4828]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:14 pca-test pyca[4828]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:14 pca-test pyca[4828]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:14 pca-test pyca[4828]: > POST /capture-admin/agents/pca-test HTTP/1.1
Aug 11 12:43:14 pca-test pyca[4828]: Host: <opencast-admin-server>
Aug 11 12:43:14 pca-test pyca[4828]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/capture-admin/agents/pca-test", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:14 pca-test pyca[4828]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:14 pca-test pyca[4828]: Accept: */*
Aug 11 12:43:14 pca-test pyca[4828]: X-Requested-Auth: Digest
Aug 11 12:43:14 pca-test pyca[4828]: Content-Length: 264
Aug 11 12:43:14 pca-test pyca[4828]: Content-Type: multipart/form-data; boundary=------------------------<…>
Aug 11 12:43:14 pca-test pyca[4828]: #015
Aug 11 12:43:14 pca-test pyca[4828]: < HTTP/1.1 200 OK
Aug 11 12:43:14 pca-test pyca[4828]: < Date: Tue, 11 Aug 2020 10:43:14 GMT
Aug 11 12:43:14 pca-test pyca[4828]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:14 pca-test pyca[4828]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:14 pca-test pyca[4828]: < Content-Length: 0
Aug 11 12:43:14 pca-test pyca[4828]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:14 pca-test pyca[4828]: < Access-Control-Allow-Origin: *
Aug 11 12:43:14 pca-test pyca[4828]: <
Aug 11 12:43:14 pca-test pyca[4828]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:15 pca-test pyca[4840]: [pyca.utils:114:service()] [DEBUG] Cached service URLs for scheduler: ['https://<opencast-admin-server>/recordings']
Aug 11 12:43:15 pca-test pyca[4840]: [pyca.utils:31:http_request()] [DEBUG] Requesting URL: https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598352195000
Aug 11 12:43:15 pca-test pyca[4840]: [pyca.utils:56:http_request()] [DEBUG] Using authentication method digest
Aug 11 12:43:15 pca-test pyca[4840]: *   Trying Some.Public.IP.Address...
Aug 11 12:43:15 pca-test pyca[4840]: * TCP_NODELAY set
Aug 11 12:43:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:15 pca-test pyca[4840]: * found 127 certificates in /etc/ssl/certs/ca-certificates.crt
Aug 11 12:43:15 pca-test pyca[4840]: * found 381 certificates in /etc/ssl/certs
Aug 11 12:43:15 pca-test pyca[4840]: * ALPN, offering http/1.1
Aug 11 12:43:15 pca-test pyca[4840]: * SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384

Aug 11 12:43:15 pca-test pyca[4840]: * ALPN, server did not agree to a protocol
Aug 11 12:43:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598352195000 HTTP/1.1
Aug 11 12:43:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:43:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:43:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:43:15 pca-test pyca[4840]: #015
Aug 11 12:43:15 pca-test pyca[4840]: < HTTP/1.1 401 Full authentication is required to access this resource
Aug 11 12:43:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:43:15 GMT
Aug 11 12:43:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:15 pca-test pyca[4840]: < WWW-Authenticate: Digest realm="Opencast", qop="auth", nonce="<…>"
Aug 11 12:43:15 pca-test pyca[4840]: < Cache-Control: must-revalidate,no-cache,no-store
Aug 11 12:43:15 pca-test pyca[4840]: < Content-Type: text/html;charset=iso-8859-1
Aug 11 12:43:15 pca-test pyca[4840]: < Content-Length: 429
Aug 11 12:43:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:43:15 pca-test pyca[4840]: <
Aug 11 12:43:15 pca-test pyca[4840]: * Ignoring the response-body
Aug 11 12:43:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:15 pca-test pyca[4840]: * Issue another request to this URL: 'https://<opencast-admin-server>/recordings/calendars?agentid=pca-test&cutoff=1598352195000'
Aug 11 12:43:15 pca-test pyca[4840]: * Found bundle for host <opencast-admin-server>: 0x26204c0 [can pipeline]
Aug 11 12:43:15 pca-test pyca[4840]: * Re-using existing connection! (#0) with host <opencast-admin-server>
Aug 11 12:43:15 pca-test pyca[4840]: * Connected to <opencast-admin-server> (Some.Public.IP.Address) port 443 (#0)
Aug 11 12:43:15 pca-test pyca[4840]: * Server auth using Digest with user 'opencast_system_account'
Aug 11 12:43:15 pca-test pyca[4840]: > GET /recordings/calendars?agentid=pca-test&cutoff=1598352195000 HTTP/1.1
Aug 11 12:43:15 pca-test pyca[4840]: Host: <opencast-admin-server>
Aug 11 12:43:15 pca-test pyca[4840]: Authorization: Digest username="opencast_system_account", realm="Opencast", nonce="<…>", uri="/recordings/calendars?agentid=pca-test&cutoff=1598352195000", cnonce="<…>", nc=00000001, qop=auth, response="<…>"
Aug 11 12:43:15 pca-test pyca[4840]: User-Agent: PycURL/7.43.0.1 libcurl/7.58.0 GnuTLS/3.5.18 zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Aug 11 12:43:15 pca-test pyca[4840]: Accept: */*
Aug 11 12:43:15 pca-test pyca[4840]: X-Requested-Auth: Digest
Aug 11 12:43:15 pca-test pyca[4840]: #015
Aug 11 12:43:15 pca-test pyca[4840]: < HTTP/1.1 200 OK
Aug 11 12:43:15 pca-test pyca[4840]: < Date: Tue, 11 Aug 2020 10:43:15 GMT
Aug 11 12:43:15 pca-test pyca[4840]: < Server: Jetty(9.4.12.v20180830)
Aug 11 12:43:15 pca-test pyca[4840]: < Expires: Thu, 01 Jan 1970 00:00:00 GMT
Aug 11 12:43:15 pca-test pyca[4840]: < Content-Type: text/calendar;charset=UTF-8
Aug 11 12:43:15 pca-test pyca[4840]: < ETag: mod1597142243000
Aug 11 12:43:15 pca-test pyca[4840]: < Content-Length: 3196
Aug 11 12:43:15 pca-test pyca[4840]: < Set-Cookie: JSESSIONID=node0<…>node0;Path=/;Secure
Aug 11 12:43:15 pca-test pyca[4840]: < Access-Control-Allow-Origin: *
Aug 11 12:43:15 pca-test pyca[4840]: <
Aug 11 12:43:15 pca-test pyca[4840]: * Connection #0 to host <opencast-admin-server> left intact
Aug 11 12:43:15 pca-test pyca[4840]: [pyca.schedule:120:control_loop()] [INFO] No scheduled recording

EDIT(@lkiesow): put logs/config into expandable details block

from pyca.

lkiesow avatar lkiesow commented on June 16, 2024

This looks like a configuration error:

# Type: string
# Default: ffmpeg -nostats -re -f lavfi -r 25 -i testsrc -t {{time}} {{dir}}/{{name}}.webm'
#command          = 'ffmpeg -nostats -re -f lavfi -r 25 -i testsrc -f lavfi -i sine -t {{time}} {{dir}}/{{name}}.webm'
#command          = 'ffmpeg -nostats -re -f lavfi -r 25 -i testsrc -f lavfi -i sine -t {{time}} {{dir}}/{{name}}.mp4'
command          = 'ffmpeg -nostats -re -f lavfi -r 25 -i testsrc -f lavfi -i sine -t {{time}} {{dir}}/{{name}}.avi'

[…]

# Output files produces by the capture command.
# Type: list of strings (write as '...', '...')
# Default: '{{dir}}/{{name}}.webm'
#files            = '{{dir}}/{{name}}.webm'

You specified a command which creates files in {{dir}}/{{name}}.avi' but tell pyCA to use the default location for uploads which is {{dir}}/{{name}}.webm. So, pyCA is probably trying to upload non-existing files. That will fail.

from pyca.

Bahamut-Chocobo avatar Bahamut-Chocobo commented on June 16, 2024

Thank you. That was the problem - the config error.

For better understanding. Can you shortly explain, what the option's specific purpose is?

[capture]
…
files = '{{dir}}/{{name}}.webm'

Is it just for pyCA to know where to find the files for ingesting?

from pyca.

lkiesow avatar lkiesow commented on June 16, 2024

Yes. Since you can specify arbitrary commands or scripts for capturing, you need to tell pyCA where to expect files. This option specifies a list of files to ingest. It corresponds to the list of flavors to use for each file.

from pyca.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.