logs
stringlengths
104
251k
function use_crawlera(splash) local user = splash.args.crawlera_user local host = 'proxy.crawlera.com' local port = 8010 local session_header = 'X-Crawlera-Profile' local session_id = 'desktop' splash:on_request(function (request) -- Discard requests to advertising and tracking domains. if string.find(request.url, 'doubleclick%.net') or string.find(request.url, 'api%-g%.weedmaps%.co') or string.find(request.url, 'collector%-pxp') or string.find(request.url, 'pixel%.sitescout%.com') or string.find(request.url, 'api%.honeybadger%.io') or string.find(request.url, 'google%-analytics%.com') or string.find(request.url, 'clickserv%.sitescout%.com') or string.find(request.url, 'trafficjunky%.net') or string.find(request.url, 'client%.perimeterx%.net') or string.find(request.url, 'evs%.segment%.weedmaps%.com') or string.find(request.url, 'analytics%.google%.com') then request.abort() return end -- Avoids using Crawlera for URLS starting -- with 'static.' and the ones ending with '.png'. if string.find(request.url, '://static%.') ~= nil or string.find(request.url, 'fill=solid$') ~= nil then return end -- request:set_header('X-Crawlera-Cookies', 'disable') request:set_header('X-Crawlera-Profile','desktop') -- request:set_header(session_header, session_id) request:set_proxy{host, port, username=user, password=''} end) splash:on_response_headers(function (response) if type(response.headers[session_header]) ~= nil then session_id = response.headers[session_header] end end) end [Truncated] -- splash.response_body_enabled = true use_crawlera(splash) splash:go({http_method=splash.args.http_method,splash.args.url,headers=splash.args.headers,formdata=splash.args.formdata}) splash:wait(2) return splash:html() end
function use_crawlera(splash) local user = splash.args.crawlera_user local host = 'proxy.crawlera.com' local port = 8010 local session_header = 'X-Crawlera-Profile' local session_id = 'desktop' splash:on_request(function (request) -- Discard requests to advertising and tracking domains. if string.find(request.url, 'doubleclick%.net') or string.find(request.url, 'api%-g%.weedmaps%.co') or string.find(request.url, 'collector%-pxp') or string.find(request.url, 'pixel%.sitescout%.com') or string.find(request.url, 'api%.honeybadger%.io') or string.find(request.url, 'google%-analytics%.com') or string.find(request.url, 'clickserv%.sitescout%.com') or string.find(request.url, 'trafficjunky%.net') or string.find(request.url, 'client%.perimeterx%.net') or string.find(request.url, 'evs%.segment%.weedmaps%.com') or string.find(request.url, 'analytics%.google%.com') then request.abort() return end -- Avoids using Crawlera for URLS starting -- with 'static.' and the ones ending with '.png'. if string.find(request.url, '://static%.') ~= nil or string.find(request.url, 'fill=solid$') ~= nil then return end -- request:set_header('X-Crawlera-Cookies', 'disable') request:set_header('X-Crawlera-Profile','desktop') -- request:set_header(session_header, session_id) request:set_proxy{host, port, username=user, password=''} end) splash:on_response_headers(function (response) if type(response.headers[session_header]) ~= nil then session_id = response.headers[session_header] end end) end [Truncated] -- splash.response_body_enabled = true use_crawlera(splash) splash:go({http_method=splash.args.http_method,splash.args.url,headers=splash.args.headers,formdata=splash.args.formdata}) splash:wait(2) return splash:html() end
Apr 5 13:48:26 weed-master-1 seaweedfs-master[6999]: I0405 13:48:26 6999 masterclient.go:120] master masterClient failed to receive from weed-master-1.s02.test.local:9333: rpc error: code = Unavailable desc = transport is closing Apr 5 18:46:30 weed-master-1 seaweedfs-master[20745]: W0405 18:46:30 20745 master_grpc_server.go:165] SendHeartbeat.Send response to to weed-volume-003.s02.test.local:8080 rpc error: code = Unavailable desc = transport is closing Apr 5 18:46:30 weed-master-1 seaweedfs-master[20745]: W0405 18:46:30 20745 master_grpc_server.go:165] SendHeartbeat.Send response to to weed-volume-004.s02.test.local:8080 rpc error: code = Unavailable desc = transport is closing Apr 5 18:46:34 weed-master-1 seaweedfs-master[20745]: W0405 18:46:34 20745 master_grpc_server.go:165] SendHeartbeat.Send response to to weed-volume-002.s02.test.local:8080 rpc error: code = Unavailable desc = transport is closing Apr 5 18:46:34 weed-master-1 seaweedfs-master[20745]: W0405 18:46:34 20745 master_grpc_server.go:57] SendHeartbeat.Recv server weed-volume-005.s02.test.local:8080 : rpc error: code = Canceled desc = context canceled Apr 5 18:46:34 weed-master-1 seaweedfs-master[20745]: W0405 18:46:34 20745 master_grpc_server.go:165] SendHeartbeat.Send response to to weed-volume-001.s02.test.local:8080 rpc error: code = Unavailable desc = transport is closing
ERROR: Could not find a version that satisfies the requirement oktopus (from lightkurve) ERROR: No matching distribution found for oktopus
ERROR: Could not find a version that satisfies the requirement oktopus (from lightkurve) ERROR: No matching distribution found for oktopus
APIVersion 2021-01-01 is not available Traceback (most recent call last): python3.6/site-packages/knack/cli.py, ln 233, in invoke cmd_result = self.invocation.execute(args) cli/core/commands/__init__.py, ln 660, in execute raise ex cli/core/commands/__init__.py, ln 723, in _run_jobs_serially results.append(self._run_job(expanded_arg, cmd_copy)) cli/core/commands/__init__.py, ln 716, in _run_job six.reraise(*sys.exc_info()) ... cli/command_modules/storage/_client_factory.py, ln 143, in cf_sa return storage_client_factory(cli_ctx).storage_accounts azure/mgmt/storage/_storage_management_client.py, ln 413, in storage_accounts raise NotImplementedError("APIVersion {} is not available".format(api_version)) NotImplementedError: APIVersion 2021-01-01 is not available
APIVersion 2021-01-01 is not available Traceback (most recent call last): python3.6/site-packages/knack/cli.py, ln 233, in invoke cmd_result = self.invocation.execute(args) cli/core/commands/__init__.py, ln 660, in execute raise ex cli/core/commands/__init__.py, ln 723, in _run_jobs_serially results.append(self._run_job(expanded_arg, cmd_copy)) cli/core/commands/__init__.py, ln 716, in _run_job six.reraise(*sys.exc_info()) ... cli/command_modules/storage/_client_factory.py, ln 143, in cf_sa return storage_client_factory(cli_ctx).storage_accounts azure/mgmt/storage/_storage_management_client.py, ln 413, in storage_accounts raise NotImplementedError("APIVersion {} is not available".format(api_version)) NotImplementedError: APIVersion 2021-01-01 is not available
r spark_version <- "2.1.0" sc <- spark_connect(master = "local", version = spark_version) # create a table with character columns cars = mtcars cars$gear = as.character(cars$gear) cars$carb = as.character(cars$carb) cars_tbl <- sdf_copy_to(sc = sc, x = cars, overwrite = T) # fit a model with interactions between character columns mdl = ml_linear_regression(cars_tbl,mpg ~ gear:carb) # try and extract the model coefficients tidy(mdl) # get this error: Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, : Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, : arguments imply differing number of rows: 19, 0
r spark_version <- "2.1.0" sc <- spark_connect(master = "local", version = spark_version) # create a table with character columns cars = mtcars cars$gear = as.character(cars$gear) cars$carb = as.character(cars$carb) cars_tbl <- sdf_copy_to(sc = sc, x = cars, overwrite = T) # fit a model with interactions between character columns mdl = ml_linear_regression(cars_tbl,mpg ~ gear:carb) # try and extract the model coefficients tidy(mdl) # get this error: Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, : Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, : arguments imply differing number of rows: 19, 0
$ meshctl cluster deregister enterprise remote-cluster2 warning: release enterprise-agent does not exist, nothing to uninstall
$ meshctl cluster deregister enterprise remote-cluster2 warning: release enterprise-agent does not exist, nothing to uninstall
. ### Examples A simple error message: {:error, "Something bad happened"} Multiple error messages: {:error, ["Something bad", "Even worse"] Single custom errors (note the required
keys): {:error, message: "Unknown user", code: 21} {:error, %{message: "A database error occurred", details: format_db_error(some_value)}} Three errors of mixed types: {:error, ["Simple message", [message: "A keyword list error", code: 1], %{message: "A map error"}]} Generic handler for interoperability with errors from other libraries: {:error, :foo} {:error, 1.0} {:error, 2} ## To activate a plugin
elixir ## For an error result One or more errors for a field can be returned in a single `{:error, error_value}` tuple. `error_value` can be: - A simple error message string. - A map containing `:message` key, plus any additional serializable metadata. - A keyword list containing a `:message` key, plus any additional serializable metadata. - A list containing multiple of any/all of these. - Any other value compatible with `to_string/1`. ### Examples A simple error message: {:error, "Something bad happened"} Multiple error messages: {:error, ["Something bad", "Even worse"] Single custom errors (note the required `:message` keys): {:error, message: "Unknown user", code: 21} {:error, %{message: "A database error occurred", details: format_db_error(some_value)}} Three errors of mixed types: {:error, ["Simple message", [message: "A keyword list error", code: 1], %{message: "A map error"}]} Generic handler for interoperability with errors from other libraries: {:error, :foo} {:error, 1.0} {:error, 2} ## To activate a plugin `{:plugin, NameOfPluginModule, term}` to activate a plugin.
ruby class WebpushSubscriptionsController < ApplicationController skip_before_action :verify_authenticity_token def index end def create notification = WebpushNotification.find_by(auth_key: params[:keys][:auth]) if !notification notification = WebpushNotification.new( user: current_user, endpoint: params[:endpoint], auth_key: params[:keys][:auth], p256dh_key: params[:keys][:p256dh], ) end if notification.save render json: notification else render json: notification.errors.full_messages end end end
// Update push subscription if any change is detected function onPushSubcriptionChange(event) { event.waitUntil(swRegistration.pushManager.subscribe(event.oldSubscription.options) .then(subscription => { const data = { subscription: subscription, }; return fetch("/notifications/create", { method: "post", headers: { "Content-type": "application/json" }, body: JSON.stringify(data), }); }) ); } self.addEventListener('pushsubscriptionchange', onPushSubcriptionChange);
ruby class WebpushSubscriptionsController < ApplicationController skip_before_action :verify_authenticity_token def index end def create notification = WebpushNotification.find_by(auth_key: params[:keys][:auth]) if !notification notification = WebpushNotification.new( user: current_user, endpoint: params[:endpoint], auth_key: params[:keys][:auth], p256dh_key: params[:keys][:p256dh], ) end if notification.save render json: notification else render json: notification.errors.full_messages end end end
// Update push subscription if any change is detected function onPushSubcriptionChange(event) { event.waitUntil(swRegistration.pushManager.subscribe(event.oldSubscription.options) .then(subscription => { const data = { subscription: subscription, }; return fetch("/notifications/create", { method: "post", headers: { "Content-type": "application/json" }, body: JSON.stringify(data), }); }) ); } self.addEventListener('pushsubscriptionchange', onPushSubcriptionChange);
/hpc/local/benchmarks/daily/next/2021-04-25/hpcx-gcc-redhat7.6/ompi/bin/oshrun -np 256 --display-map --bind-to core -mca oshmem_proc_group_cache_size 10000 -mca sshmem ucx -mca atomic ucx -mca coll '^hcoll' -mca coll_hcoll_enable 0 -mca spml ucx -mca pml ucx -x UCX_HANDLE_ERRORS=bt -x UCX_TLS=tcp -x UCX_NET_DEVICES=p2p2 --map-by node -x SHMEM_SYMMETRIC_HEAP_SIZE=128M /hpc/mtr_scrap/users/mtt/scratch/shmem/20210425_201246_176469_8732_jazz01.swx.labs.mlnx/installs/9P6K/tests/gups-shmem/mtt-tests.git/gups-shmem/gups
; echo " version(C): $v_changelog" [[ ! -z $v_changelog ]] || continue # No version in changelog? Skip! v_template=
; echo " version(T): $v_template" [[ ! -z $v_template ]] || continue # No version in template? Skip! [[ "$v_changelog" == "$v_template" ]] || continue # Inconsistent versions? Skip! new_version=
patched." sed '1,1s/.*/&\n\n## v'$new_version'\n\n- Added default_frequency "'$DEFAULT_FREQUENCY'"/' $changelog > $changelog.mod echo "patch:"; diff $changelog $changelog.mod echo " CHANGELOG.md patched." mv $f.mod $f mv $changelog.mod $changelog done
#!/usr/bin/bash DEFAULT_FREQUENCY="daily" TEMPLATE_TOPDIR="cost" echo "Finding template files..." POLICY_TEMPLATE_FILES=`find $TEMPLATE_TOPDIR -name \*.pt -exec egrep -L default_frequency {} \;` for f in $POLICY_TEMPLATE_FILES; do echo "Processing: `basename $f`" d=`dirname $f`; echo " dirname: $d" changelog=$d/CHANGELOG.md; echo " changelog: $changelog" v_changelog=`egrep -m1 -o 'v[0-9]+\.[0-9]+' $changelog | sed 's/v//'`; echo " version(C): $v_changelog" [[ ! -z $v_changelog ]] || continue # No version in changelog? Skip! v_template=`egrep -m1 -o 'version\s*:\s*"[0-9]+\.[0-9]+' $f | sed 's/.*"//'`; echo " version(T): $v_template" [[ ! -z $v_template ]] || continue # No version in template? Skip! [[ "$v_changelog" == "$v_template" ]] || continue # Inconsistent versions? Skip! new_version=`echo $v_template | perl -lane '/(\d+)\.(\d+)/&&print "$1.",$2+1'`; echo " new version: $new_version" sed 's/\(^\s*version\s*:\s*"\)'$v_template'/\1'$new_version'/' $f > $f.mod; echo " patch1:"; diff $f $f.mod sed 's/^\(info.*\)/default_frequency "'$DEFAULT_FREQUENCY'"\n\1/' $f.mod > $f.mod2 mv $f.mod2 $f.mod; echo " patch2:"; diff $f $f.mod echo " `basename $f` patched." sed '1,1s/.*/&\n\n## v'$new_version'\n\n- Added default_frequency "'$DEFAULT_FREQUENCY'"/' $changelog > $changelog.mod echo "patch:"; diff $changelog $changelog.mod echo " CHANGELOG.md patched." mv $f.mod $f mv $changelog.mod $changelog done
2021-05-06 16:47:31.477146-0700 Unearth[73286:3123244] -[__NSSingleEntryDictionaryI setObject:forKeyedSubscript:]: unrecognized selector sent to instance 0x7b08002d52c0 2021-05-06 16:47:31.796546-0700 Unearth[73286:3123244] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSSingleEntryDictionaryI setObject:forKeyedSubscript:]: unrecognized selector sent to instance 0x7b08002d52c0' *** First throw call stack: ( 0 CoreFoundation 0x00007fff20422fba __exceptionPreprocess + 242 1 libobjc.A.dylib 0x00007fff20193ff5 objc_exception_throw + 48 2 CoreFoundation 0x00007fff20431d2f +[NSObject(NSObject) instanceMethodSignatureForSelector:] + 0 3 CoreFoundation 0x00007fff204274cf ___forwarding___ + 1455 4 CoreFoundation 0x00007fff204297a8 _CF_forwarding_prep_0 + 120 5 Unearth 0x0000000110dd36ee __50-[GULHeartbeatDateStorage setHearbeatDate:forTag:]_block_invoke + 398 6 Foundation 0x00007fff208dd108 -[NSFileCoordinator _invokeAccessor:thenCompletionHandler:] + 74 7 Foundation 0x00007fff208dd475 __98-[NSFileCoordinator coordinateReadingItemAtURL:options:writingItemAtURL:options:error:byAccessor:]_block_invoke + 106 8 Foundation 0x00007fff208e0398 __110-[NSFileCoordinator(NSPrivate) _coordinateReadingItemAtURL:options:writingItemAtURL:options:error:byAccessor:]_block_invoke.347 + 248 9 Foundation 0x00007fff208dec6e -[NSFileCoordinator(NSPrivate) _withAccessArbiter:invokeAccessor:orDont:andRelinquishAccessClaim:] + 601 10 Foundation 0x00007fff208e00ab -[NSFileCoordinator(NSPrivate) _coordinateReadingItemAtURL:options:writingItemAtURL:options:error:byAccessor:] + 1106 11 Foundation 0x00007fff208dd3ec -[NSFileCoordinator coordinateReadingItemAtURL:options:writingItemAtURL:options:error:byAccessor:] + 99 12 Unearth 0x0000000110dd33da -[GULHeartbeatDateStorage setHearbeatDate:forTag:] + 874 13 Unearth 0x0000000110e0662d -[FIRCoreDiagnostics setHeartbeatFlagIfNeededToConfig:] + 669 14 Unearth 0x0000000110e05eda __42-[FIRCoreDiagnostics sendDiagnosticsData:]_block_invoke + 730 15 libclang_rt.tsan_iossim_dynamic.dyl 0x00000001139fb76c _ZN6__tsanL24invoke_and_release_blockEPv + 12 16 libclang_rt.tsan_iossim_dynamic.dyl 0x00000001139fb4c2 _ZN6__tsanL22dispatch_callback_wrapEPv + 306 17 libdispatch.dylib 0x00000001190ca74e _dispatch_client_callout + 8 18 libdispatch.dylib 0x00000001190d0f9a _dispatch_lane_serial_drain + 796 19 libdispatch.dylib 0x00000001190d1c67 _dispatch_lane_invoke + 436 20 libdispatch.dylib 0x00000001190dda7a _dispatch_workloop_worker_thread + 872 21 libsystem_pthread.dylib 0x00007fff603404c0 _pthread_wqthread + 314 22 libsystem_pthread.dylib 0x00007fff6033f493 start_wqthread + 15 ) libc++abi: terminating with uncaught exception of type NSException *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSSingleEntryDictionaryI setObject:forKeyedSubscript:]: unrecognized selector sent to instance 0x7b08002d52c0' terminating with uncaught exception of type NSException CoreSimulator 757.5 - Device: iPhone 11 Pro Max (8354ABC3-297B-4640-8814-0101E5EFD7D6) - Runtime: iOS 14.5 (18E182) - DeviceType: iPhone 11 Pro Max
2021-05-06 16:47:31.477146-0700 Unearth[73286:3123244] -[__NSSingleEntryDictionaryI setObject:forKeyedSubscript:]: unrecognized selector sent to instance 0x7b08002d52c0 2021-05-06 16:47:31.796546-0700 Unearth[73286:3123244] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSSingleEntryDictionaryI setObject:forKeyedSubscript:]: unrecognized selector sent to instance 0x7b08002d52c0' *** First throw call stack: ( 0 CoreFoundation 0x00007fff20422fba __exceptionPreprocess + 242 1 libobjc.A.dylib 0x00007fff20193ff5 objc_exception_throw + 48 2 CoreFoundation 0x00007fff20431d2f +[NSObject(NSObject) instanceMethodSignatureForSelector:] + 0 3 CoreFoundation 0x00007fff204274cf ___forwarding___ + 1455 4 CoreFoundation 0x00007fff204297a8 _CF_forwarding_prep_0 + 120 5 Unearth 0x0000000110dd36ee __50-[GULHeartbeatDateStorage setHearbeatDate:forTag:]_block_invoke + 398 6 Foundation 0x00007fff208dd108 -[NSFileCoordinator _invokeAccessor:thenCompletionHandler:] + 74 7 Foundation 0x00007fff208dd475 __98-[NSFileCoordinator coordinateReadingItemAtURL:options:writingItemAtURL:options:error:byAccessor:]_block_invoke + 106 8 Foundation 0x00007fff208e0398 __110-[NSFileCoordinator(NSPrivate) _coordinateReadingItemAtURL:options:writingItemAtURL:options:error:byAccessor:]_block_invoke.347 + 248 9 Foundation 0x00007fff208dec6e -[NSFileCoordinator(NSPrivate) _withAccessArbiter:invokeAccessor:orDont:andRelinquishAccessClaim:] + 601 10 Foundation 0x00007fff208e00ab -[NSFileCoordinator(NSPrivate) _coordinateReadingItemAtURL:options:writingItemAtURL:options:error:byAccessor:] + 1106 11 Foundation 0x00007fff208dd3ec -[NSFileCoordinator coordinateReadingItemAtURL:options:writingItemAtURL:options:error:byAccessor:] + 99 12 Unearth 0x0000000110dd33da -[GULHeartbeatDateStorage setHearbeatDate:forTag:] + 874 13 Unearth 0x0000000110e0662d -[FIRCoreDiagnostics setHeartbeatFlagIfNeededToConfig:] + 669 14 Unearth 0x0000000110e05eda __42-[FIRCoreDiagnostics sendDiagnosticsData:]_block_invoke + 730 15 libclang_rt.tsan_iossim_dynamic.dyl 0x00000001139fb76c _ZN6__tsanL24invoke_and_release_blockEPv + 12 16 libclang_rt.tsan_iossim_dynamic.dyl 0x00000001139fb4c2 _ZN6__tsanL22dispatch_callback_wrapEPv + 306 17 libdispatch.dylib 0x00000001190ca74e _dispatch_client_callout + 8 18 libdispatch.dylib 0x00000001190d0f9a _dispatch_lane_serial_drain + 796 19 libdispatch.dylib 0x00000001190d1c67 _dispatch_lane_invoke + 436 20 libdispatch.dylib 0x00000001190dda7a _dispatch_workloop_worker_thread + 872 21 libsystem_pthread.dylib 0x00007fff603404c0 _pthread_wqthread + 314 22 libsystem_pthread.dylib 0x00007fff6033f493 start_wqthread + 15 ) libc++abi: terminating with uncaught exception of type NSException *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSSingleEntryDictionaryI setObject:forKeyedSubscript:]: unrecognized selector sent to instance 0x7b08002d52c0' terminating with uncaught exception of type NSException CoreSimulator 757.5 - Device: iPhone 11 Pro Max (8354ABC3-297B-4640-8814-0101E5EFD7D6) - Runtime: iOS 14.5 (18E182) - DeviceType: iPhone 11 Pro Max
log ======================================== DATA_DIR: /data DATA_DB: /data/db.sqlite3 DATA_CONFIG: /data/config.json DATA_RSAKEY: /data/rsa_key DATA_ATTACHMENTS: /data/attachments DATA_SENDS: /data/sends ======================================== CRON: * 0,30 * * * RCLONE_REMOTE_NAME: rclone_backup RCLONE_REMOTE_DIR: /config/ RCLONE_REMOTE: rclone_backup:/config ZIP_ENABLE: TRUE ZIP_PASSWORD: 18 Chars ZIP_TYPE: 7z BACKUP_FILE_DATE_FORMAT: %Y%m%d--%Hh%Mm%Ss BACKUP_KEEP_DAYS: 7 MAIL_SMTP_ENABLE: FALSE TIMEZONE: Europe/Paris ======================================== 2021/05/12 08:21:08 NOTICE: Config file "/config/rclone/rclone.conf" not found - using defaults 2021/05/12 08:21:08 Failed to create file system for "rclone_backup:/config": didn't find section in config file
log ======================================== DATA_DIR: /data DATA_DB: /data/db.sqlite3 DATA_CONFIG: /data/config.json DATA_RSAKEY: /data/rsa_key DATA_ATTACHMENTS: /data/attachments DATA_SENDS: /data/sends ======================================== CRON: * 0,30 * * * RCLONE_REMOTE_NAME: rclone_backup RCLONE_REMOTE_DIR: /config/ RCLONE_REMOTE: rclone_backup:/config ZIP_ENABLE: TRUE ZIP_PASSWORD: 18 Chars ZIP_TYPE: 7z BACKUP_FILE_DATE_FORMAT: %Y%m%d--%Hh%Mm%Ss BACKUP_KEEP_DAYS: 7 MAIL_SMTP_ENABLE: FALSE TIMEZONE: Europe/Paris ======================================== 2021/05/12 08:21:08 NOTICE: Config file "/config/rclone/rclone.conf" not found - using defaults 2021/05/12 08:21:08 Failed to create file system for "rclone_backup:/config": didn't find section in config file
[info] [error] java.lang.IllegalAccessError: class com.typesafe.sslconfig.ssl.FakeKeyStore$ (in unnamed module @0x3e6d8c1c) cannot access class sun.security.x509.X509CertInfo (in module java.base) because module java.base does not export sun.security.x509 to unnamed module @0x3e6d8c1c (FakeKeyStore.scala:89)
[info] [error] java.lang.IllegalAccessError: class com.typesafe.sslconfig.ssl.FakeKeyStore$ (in unnamed module @0x3e6d8c1c) cannot access class sun.security.x509.X509CertInfo (in module java.base) because module java.base does not export sun.security.x509 to unnamed module @0x3e6d8c1c (FakeKeyStore.scala:89)
SQL compilation error: error line 2 at position 17 invalid identifier '"TO_VARCHAR(TO_TIMESTAMP_NTZ(value:unix_timestamp_property::NUMBER,, 3), \'yyyy-mm-dd-hh\')"'
SQL compilation error: error line 2 at position 17 invalid identifier '"TO_VARCHAR(TO_TIMESTAMP_NTZ(value:unix_timestamp_property::NUMBER,, 3), \'yyyy-mm-dd-hh\')"'
Traceback (most recent call last): File "/usr/local/bin/telepresence/telepresence/cli.py", line 135, in crash_reporting yield File "/usr/local/bin/telepresence/telepresence/main.py", line 68, in main socks_port, ssh = do_connect(runner, remote_info) File "/usr/local/bin/telepresence/telepresence/connect/connect.py", line 117, in do_connect return connect( File "/usr/local/bin/telepresence/telepresence/connect/connect.py", line 70, in connect raise RuntimeError("SSH to the cluster failed to start. See logfile.") RuntimeError: SSH to the cluster failed to start. See logfile.
Traceback (most recent call last): File "/usr/local/bin/telepresence/telepresence/cli.py", line 135, in crash_reporting yield File "/usr/local/bin/telepresence/telepresence/main.py", line 68, in main socks_port, ssh = do_connect(runner, remote_info) File "/usr/local/bin/telepresence/telepresence/connect/connect.py", line 117, in do_connect return connect( File "/usr/local/bin/telepresence/telepresence/connect/connect.py", line 70, in connect raise RuntimeError("SSH to the cluster failed to start. See logfile.") RuntimeError: SSH to the cluster failed to start. See logfile.
2009/11/10 23:00:00 net/http: invalid byte ';' in Cookie.Value; dropping invalid bytes c=; Domain=domain.com; Expires=Tue, 10 Nov 2009 23:00:00 GMT
// Valid reports whether the cookie is valid as per the String method, // that is, String does not discard or change any fields. func (c *Cookie) Valid() error
2009/11/10 23:00:00 net/http: invalid byte ';' in Cookie.Value; dropping invalid bytes c=; Domain=domain.com; Expires=Tue, 10 Nov 2009 23:00:00 GMT
// Valid reports whether the cookie is valid as per the String method, // that is, String does not discard or change any fields. func (c *Cookie) Valid() error
// Create device pool := x509.NewCertPool() caStr, err := ioutil.ReadFile("astarte/compose/vernemq-certs/rootCA.crt") if err != nil { _ = fmt.Errorf("read server ca file fail") os.Exit(1) } block, _ := pem.Decode(caStr) if block == nil { _ = fmt.Errorf("decode ca file fail") os.Exit(1) } if block.Type != "CERTIFICATE" || len(block.Headers) != 0 { _ = fmt.Errorf("decode ca block file fail") os.Exit(1) } cert, err := x509.ParseCertificate(block.Bytes) if err != nil { _ = fmt.Errorf("ParseCertificate ca block file fail") os.Exit(1) } d, err := device.NewDevice(deviceID, deviceRealm, credentialsSecret, apiEndpoint, &http.Client{ Transport: &http.Transport{ TLSClientConfig: &tls.Config{ RootCAs: pool, ServerName: cert.Subject.CommonName, }, }, Timeout: time.Second * 30}) if err != nil { fmt.Println(err.Error()) os.Exit(1) }
// Create device pool := x509.NewCertPool() caStr, err := ioutil.ReadFile("astarte/compose/vernemq-certs/rootCA.crt") if err != nil { _ = fmt.Errorf("read server ca file fail") os.Exit(1) } block, _ := pem.Decode(caStr) if block == nil { _ = fmt.Errorf("decode ca file fail") os.Exit(1) } if block.Type != "CERTIFICATE" || len(block.Headers) != 0 { _ = fmt.Errorf("decode ca block file fail") os.Exit(1) } cert, err := x509.ParseCertificate(block.Bytes) if err != nil { _ = fmt.Errorf("ParseCertificate ca block file fail") os.Exit(1) } d, err := device.NewDevice(deviceID, deviceRealm, credentialsSecret, apiEndpoint, &http.Client{ Transport: &http.Transport{ TLSClientConfig: &tls.Config{ RootCAs: pool, ServerName: cert.Subject.CommonName, }, }, Timeout: time.Second * 30}) if err != nil { fmt.Println(err.Error()) os.Exit(1) }
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β–Ί Seed β”‚ (failure at this point) β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚1 β”Œβ”€β”€β”€β”΄β”€β”€β”€β” β”‚ β”‚ β”‚ A β”‚ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”˜
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β–Ί Seed β”‚ (failure at this point) β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚1 β”Œβ”€β”€β”€β”΄β”€β”€β”€β” β”‚ β”‚ β”‚ A β”‚ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”˜
Traceback (most recent call last): File "/opt/circleci/.pyenv/versions/2.7.12/bin/paster", line 8, in <module> sys.exit(run()) File "/opt/circleci/.pyenv/versions/2.7.12/lib/python2.7/site-packages/paste/script/command.py", line 102, in run invoke(command, command_name, options, args[1:]) File "/opt/circleci/.pyenv/versions/2.7.12/lib/python2.7/site-packages/paste/script/command.py", line 141, in invoke exit_code = runner.run(args) File "/opt/circleci/.pyenv/versions/2.7.12/lib/python2.7/site-packages/paste/script/command.py", line 236, in run result = self.command() File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/lib/cli.py", line 357, in command self._load_config(cmd!='upgrade') File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/lib/cli.py", line 330, in _load_config self.site_user = load_config(self.options.config, load_site_user) File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/lib/cli.py", line 237, in load_config load_environment(conf.global_conf, conf.local_conf) File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/config/environment.py", line 116, in load_environment p.load_all() File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/plugins/core.py", line 140, in load_all load(*plugins) File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/plugins/core.py", line 168, in load plugins_update() File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/plugins/core.py", line 122, in plugins_update environment.update_config() File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/config/environment.py", line 292, in update_config plugin.configure(config) File "/home/circleci/ckanext-datagovtheme/src/ckan/ckanext/datastore/plugin.py", line 80, in configure self.backend.configure(config) File "/home/circleci/ckanext-datagovtheme/src/ckan/ckanext/datastore/backend/postgres.py", line 1654, in configure with open(allowed_sql_functions_file, 'r') as f: IOError: [Errno 2] No such file or directory: '/home/circleci/ckanext-datagovtheme/ckanext/datastore/tests/allowed_functions.txt'
Traceback (most recent call last): File "/opt/circleci/.pyenv/versions/2.7.12/bin/paster", line 8, in <module> sys.exit(run()) File "/opt/circleci/.pyenv/versions/2.7.12/lib/python2.7/site-packages/paste/script/command.py", line 102, in run invoke(command, command_name, options, args[1:]) File "/opt/circleci/.pyenv/versions/2.7.12/lib/python2.7/site-packages/paste/script/command.py", line 141, in invoke exit_code = runner.run(args) File "/opt/circleci/.pyenv/versions/2.7.12/lib/python2.7/site-packages/paste/script/command.py", line 236, in run result = self.command() File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/lib/cli.py", line 357, in command self._load_config(cmd!='upgrade') File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/lib/cli.py", line 330, in _load_config self.site_user = load_config(self.options.config, load_site_user) File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/lib/cli.py", line 237, in load_config load_environment(conf.global_conf, conf.local_conf) File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/config/environment.py", line 116, in load_environment p.load_all() File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/plugins/core.py", line 140, in load_all load(*plugins) File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/plugins/core.py", line 168, in load plugins_update() File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/plugins/core.py", line 122, in plugins_update environment.update_config() File "/home/circleci/ckanext-datagovtheme/src/ckan/ckan/config/environment.py", line 292, in update_config plugin.configure(config) File "/home/circleci/ckanext-datagovtheme/src/ckan/ckanext/datastore/plugin.py", line 80, in configure self.backend.configure(config) File "/home/circleci/ckanext-datagovtheme/src/ckan/ckanext/datastore/backend/postgres.py", line 1654, in configure with open(allowed_sql_functions_file, 'r') as f: IOError: [Errno 2] No such file or directory: '/home/circleci/ckanext-datagovtheme/ckanext/datastore/tests/allowed_functions.txt'
["ERROR" - 11:39:11 PM] Error formatting document. Error: spawnSync /Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier-plugin-apex/vendor/apex-ast-serializer/bin/apex-ast-serializer EPIPE at Object.spawnSync (internal/child_process.js:1067:20) at spawnSync (child_process.js:611:24) at parseTextWithSpawn (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier-plugin-apex/src/parser.js:25:27) at Object.parse (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier-plugin-apex/src/parser.js:489:21) at Object.parse$a [as parse] (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier/index.js:14892:19) at coreFormat (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier/index.js:16425:16) at formatWithCursor$1 (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier/index.js:16665:14) at /Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier/index.js:60922:12 at Object.format (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier/index.js:60942:12) at t.default.<anonymous> (/Users/ovasch/.vscode/extensions/esbenp.prettier-vscode-6.4.0/dist/extension.js:1:16819) at Generator.next (<anonymous>) at s (/Users/ovasch/.vscode/extensions/esbenp.prettier-vscode-6.4.0/dist/extension.js:1:9119)
Error: at parseTextWithSpawn (d:\Projects\SCyber_regular\node_modules\prettier-plugin-apex\src\parser.js:36:11) at Object.parse (d:\Projects\SCyber_regular\node_modules\prettier-plugin-apex\src\parser.js:489:21) at Object.parse (d:\Projects\SCyber_regular\node_modules\prettier\index.js:9739:19) at coreFormat (d:\Projects\SCyber_regular\node_modules\prettier\index.js:13252:23) at format (d:\Projects\SCyber_regular\node_modules\prettier\index.js:13510:73) at formatWithCursor (d:\Projects\SCyber_regular\node_modules\prettier\index.js:13526:12) at d:\Projects\SCyber_regular\node_modules\prettier\index.js:44207:15 at Object.format (d:\Projects\SCyber_regular\node_modules\prettier\index.js:44226:12) at t.default.<anonymous> (c:\Users\Alexandr\.vscode\extensions\esbenp.prettier-vscode-6.3.2\dist\extension.js:1:16897) at Generator.next (<anonymous>) at s (c:\Users\Alexandr\.vscode\extensions\esbenp.prettier-vscode-6.3.2\dist\extension.js:1:9119)
["ERROR" - 11:39:11 PM] Error formatting document. Error: spawnSync /Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier-plugin-apex/vendor/apex-ast-serializer/bin/apex-ast-serializer EPIPE at Object.spawnSync (internal/child_process.js:1067:20) at spawnSync (child_process.js:611:24) at parseTextWithSpawn (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier-plugin-apex/src/parser.js:25:27) at Object.parse (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier-plugin-apex/src/parser.js:489:21) at Object.parse$a [as parse] (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier/index.js:14892:19) at coreFormat (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier/index.js:16425:16) at formatWithCursor$1 (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier/index.js:16665:14) at /Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier/index.js:60922:12 at Object.format (/Users/ovasch/Documents/Projects/sforce.com-ci-sfdx/node_modules/prettier/index.js:60942:12) at t.default.<anonymous> (/Users/ovasch/.vscode/extensions/esbenp.prettier-vscode-6.4.0/dist/extension.js:1:16819) at Generator.next (<anonymous>) at s (/Users/ovasch/.vscode/extensions/esbenp.prettier-vscode-6.4.0/dist/extension.js:1:9119)
Reason for this is that TestPrepareCommand (`Propel\Generator\Command\TestPrepareCommand`) changes directory when building tests, but does not change back on early return:
azure-arm: AIB Customization: Finished OS Optimizations script azure-arm: [VDI Optimize] Set Default User Settings azure-arm: @{HivePath=HKLM:\VDOT_TEMP\Software\Microsoft\Windows\CurrentVersion\Explorer; KeyName=ShellState; PropertyType=BINARY; PropertyValue=0x24,0x00,0x00,0x00,0x3C,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00; SetProperty=True} azure-arm: @{HivePath=HKLM:\VDOT_TEMP\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced; KeyName=IconsOnly; PropertyType=DWORD; PropertyValue=1; SetProperty=True} ==> azure-arm: ERROR: Access is denied. azure-arm: @{HivePath=HKLM:\VDOT_TEMP\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced; KeyName=ListviewAlphaSelect; PropertyType=DWORD; PropertyValue=0; SetProperty=True} azure-arm: @{HivePath=HKLM:\VDOT_TEMP\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced; KeyName=ListviewShadow; PropertyType=DWORD; PropertyValue=0; SetProperty=True}
❯ ./node_modules/.bin/ts-node lib/index.ts /Users/karl.stoney/git/github/melongene/sink/node_modules/p-queue/dist/index.js:1 import EventEmitter from 'eventemitter3'; ^^^^^^ SyntaxError: Cannot use import statement outside a module
❯ ./node_modules/.bin/ts-node lib/index.ts /Users/karl.stoney/git/github/melongene/sink/node_modules/p-queue/dist/index.js:1 import EventEmitter from 'eventemitter3'; ^^^^^^ SyntaxError: Cannot use import statement outside a module
[Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Review> Error: GraphQL error: Field 'viewerViewedState' doesn't exist on type 'PullRequestChangedFile' [Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Review> Error: GraphQL error: Field 'viewerViewedState' doesn't exist on type 'PullRequestChangedFile
[Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Review> Error: GraphQL error: Field 'viewerViewedState' doesn't exist on type 'PullRequestChangedFile' [Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Failed to get pull request review comments: Error: GraphQL error: Field 'path' doesn't exist on type 'PullRequestReviewThread' GraphQL error: Field 'isOutdated' doesn't exist on type 'PullRequestReviewThread' [Info] Review> Error: GraphQL error: Field 'viewerViewedState' doesn't exist on type 'PullRequestChangedFile
Usage Error: Unrecognized configuration settings found: logFilters[1].pattern - run "yarn config -v" to see the list of settings supported in Yarn in ...
Usage Error: Unrecognized configuration settings found: logFilters[1].pattern - run "yarn config -v" to see the list of settings supported in Yarn in ...
Device CF:DC:0C:F9:DA:E4 (random) Name: G915 KEYBOARD Alias: G915 KEYBOARD Appearance: 0x03c1 Icon: input-keyboard Paired: yes Trusted: no Blocked: no Connected: yes WakeAllowed: yes LegacyPairing: no UUID: Generic Access Profile (00001800-0000-1000-8000-00805f9b34fb) UUID: Generic Attribute Profile (00001801-0000-1000-8000-00805f9b34fb) UUID: Device Information (0000180a-0000-1000-8000-00805f9b34fb) UUID: Battery Service (0000180f-0000-1000-8000-00805f9b34fb) UUID: Human Interface Device (00001812-0000-1000-8000-00805f9b34fb) UUID: Vendor specific (00010000-0000-1000-8000-011f2000046d) Modalias: usb:v046DpB354d0035 Battery Percentage: 0x64 (100)
Device CF:DC:0C:F9:DA:E4 (random) Name: G915 KEYBOARD Alias: G915 KEYBOARD Appearance: 0x03c1 Icon: input-keyboard Paired: yes Trusted: no Blocked: no Connected: yes WakeAllowed: yes LegacyPairing: no UUID: Generic Access Profile (00001800-0000-1000-8000-00805f9b34fb) UUID: Generic Attribute Profile (00001801-0000-1000-8000-00805f9b34fb) UUID: Device Information (0000180a-0000-1000-8000-00805f9b34fb) UUID: Battery Service (0000180f-0000-1000-8000-00805f9b34fb) UUID: Human Interface Device (00001812-0000-1000-8000-00805f9b34fb) UUID: Vendor specific (00010000-0000-1000-8000-011f2000046d) Modalias: usb:v046DpB354d0035 Battery Percentage: 0x64 (100)
{"jsonrpc":"2.0","id":67,"error":{"code":-32000,"message":"missing trie node 95e5bb0f0c52043995d4e765462a367942f798799e2919e3a419bc1b3a369f87 (path )"}}
ERROR Failed to compile with 1 errors δΈ‹εˆ9:04:52 error in ./src/app.ts Module parse failed: Top-level-await is only supported in EcmaScript Modules File was processed with these loaders: * ./node_modules/@umijs/deps/compiled/babel-loader/index.js You may need an additional loader to handle the result of these loaders. Error: Top-level-await is only supported in EcmaScript Modules at /home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:138806:11 at Hook.eval (eval at create (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:50172:10), <anonymous>:7:16) at JavascriptParser.walkAwaitExpression (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:154429:29) at JavascriptParser.walkExpression (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:154359:10) at JavascriptParser.walkVariableDeclaration (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:154213:33) at JavascriptParser.walkStatement (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:153707:10) at JavascriptParser.walkStatements (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:153568:9) at JavascriptParser.parse (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:155453:9) at /home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:116109:26 at processResult (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:115836:11) at /home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:115900:5 at /home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:35132:3 at iterateNormalLoaders (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:34958:10) at iterateNormalLoaders (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:34965:10) at /home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:34980:3 at context.callback (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:34850:13) ● Webpack β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ done (99%)
ERROR Failed to compile with 1 errors δΈ‹εˆ9:04:52 error in ./src/app.ts Module parse failed: Top-level-await is only supported in EcmaScript Modules File was processed with these loaders: * ./node_modules/@umijs/deps/compiled/babel-loader/index.js You may need an additional loader to handle the result of these loaders. Error: Top-level-await is only supported in EcmaScript Modules at /home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:138806:11 at Hook.eval (eval at create (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:50172:10), <anonymous>:7:16) at JavascriptParser.walkAwaitExpression (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:154429:29) at JavascriptParser.walkExpression (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:154359:10) at JavascriptParser.walkVariableDeclaration (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:154213:33) at JavascriptParser.walkStatement (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:153707:10) at JavascriptParser.walkStatements (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:153568:9) at JavascriptParser.parse (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:155453:9) at /home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:116109:26 at processResult (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:115836:11) at /home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:115900:5 at /home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:35132:3 at iterateNormalLoaders (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:34958:10) at iterateNormalLoaders (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:34965:10) at /home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:34980:3 at context.callback (/home/fan/08-web/wukong-doc/node_modules/@umijs/deps/compiled/webpack/5/bundle5.js:34850:13) ● Webpack β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ done (99%)
[22 ms] Remote-Containers 0.183.0 in VS Code 1.57.1 (507ce72a4466fbb27b715c3722558bb15afa9f48). [22 ms] Start: Resolving Remote [25 ms] Start: Check Docker is running [25 ms] Start: Run: docker version --format {{.Server.APIVersion}} [29 ms] spawn docker EACCES [31 ms] Docker returned an error code EACCES, message: spawn docker EACCES
[22 ms] Remote-Containers 0.183.0 in VS Code 1.57.1 (507ce72a4466fbb27b715c3722558bb15afa9f48). [22 ms] Start: Resolving Remote [25 ms] Start: Check Docker is running [25 ms] Start: Run: docker version --format {{.Server.APIVersion}} [29 ms] spawn docker EACCES [31 ms] Docker returned an error code EACCES, message: spawn docker EACCES
2021-07-08T03:05:55.805Z info: Creating new remote {dir=/tmp/a5d7c67d-110b-4793-a0eb-4af952d0439e,remote=origin,url=https://github.com/xyzco/backstage-test-app.git} {"timestamp":"2021-07-08T03:05:55.803Z"} 2021-07-08T03:05:55.808Z info: Pushing directory to remote {dir=/tmp/a5d7c67d-110b-4793-a0eb-4af952d0439e,remote=origin} {"timestamp":"2021-07-08T03:05:55.806Z"} 2021-07-08T03:05:58.448Z Error: Failed to add branch protection to 'backstage-test-app1', HttpError: Not Found at Object.handler (/app/plugins/scaffolder-backend/dist/index.cjs.js:972:15) at runMicrotasks (<anonymous>) at processTicksAndRejections (internal/process/task_queues.js:95:5) at async TaskWorker.runOneTask (/app/plugins/scaffolder-backend/dist/index.cjs.js:2710:11) at async /app/plugins/scaffolder-backend/dist/index.cjs.js:2612:9
2021-07-08T03:05:55.805Z info: Creating new remote {dir=/tmp/a5d7c67d-110b-4793-a0eb-4af952d0439e,remote=origin,url=https://github.com/xyzco/backstage-test-app.git} {"timestamp":"2021-07-08T03:05:55.803Z"} 2021-07-08T03:05:55.808Z info: Pushing directory to remote {dir=/tmp/a5d7c67d-110b-4793-a0eb-4af952d0439e,remote=origin} {"timestamp":"2021-07-08T03:05:55.806Z"} 2021-07-08T03:05:58.448Z Error: Failed to add branch protection to 'backstage-test-app1', HttpError: Not Found at Object.handler (/app/plugins/scaffolder-backend/dist/index.cjs.js:972:15) at runMicrotasks (<anonymous>) at processTicksAndRejections (internal/process/task_queues.js:95:5) at async TaskWorker.runOneTask (/app/plugins/scaffolder-backend/dist/index.cjs.js:2710:11) at async /app/plugins/scaffolder-backend/dist/index.cjs.js:2612:9
Error: The loaded '_InternalSwiftSyntaxParser' library is from a toolchain that is not compatible with this version of SwiftSyntax
"Core": { "screenshots": { "AdminTool": [ { "action": "setScreenshotsImagePath", "path": "Images/AutomaticScreenshots/AdminTools" }, { "action": "setScreenshotsRstPath", "path": "Images/AutomaticScreenshots/AdminTools" }, { "action": "resizeWindow", "width": 1232, "height": 768 }, {"action": "switchToMainFrame"}, {"action": "waitForElement", "element": "button#web"}, {"action": "click", "link": "button#web"}, {"action": "waitForElement", "element": "button#site"}, {"action": "click", "link": "button#site"}, {"action": "waitForElement", "element": "button#file"}, {"action": "click", "link": "button#file"}, {"action": "waitForElement", "element": "button#system"}, {"action": "click", "link": "button#system"}, {"action": "see", "text": "Maintenance"}, {"action": "click", "link": "Maintenance"}, {"action": "switchToContentFrame"}, {"action": "fillField", "field": "input#confirmationPassword", "value": "password"}, {"action": "click", "link": "Confirm"}, {"comment": "********************************************************"}, {"comment": "Maintenance Section of Admin Tool"}, {"comment": "********************************************************"}, {"action": "waitForText", "text": "Maintenance", "timeout": 5}, { "action": "resizeWindow", "width": 1024, "height": 512 }, { "action": "wait", "timeout": "1" }, {"action": "scrollModuleBodyTo", "toSelector": "button[data-require='TYPO3/CMS/Install/Module/Maintenance/LanguagePacks']"}, {"action": "drawArrow", "selector": "button[data-require='TYPO3/CMS/Install/Module/Maintenance/LanguagePacks']", "position": "right-middle"}, { "action": "makeScreenshotOfElement", "fileName": "ManageLanguage", "altText": "Manage language packs", "captionText": "Open the backend language administration module" }, {"action": "clearDrawings"}, {"action": "Click", "link": "Manage languages"}, { "action": "waitForModalDialogInMainFrame" }, { "action": "click", "link": "Add language" }, {"action": "see", "text": "Afrikaans"}, {"action": "switchToMainFrame"}, {"action": "drawBox", "selector": ".t3js-languagePacks-mainContent"}, {"action": "drawBox", "selector": "a[data-iso=af]"}, { "action": "makeScreenshotOfWindow", "fileName": "ManageLanguagePacksAddLanguage", "altText": "Add a language", "captionText": "Add the desired language" }, { "action": "click", "link": "button.t3js-modal-close" } ] } }, ![ManageLanguagePacksAddLanguage](https://user-images.githubusercontent.com/48202465/125155764-48d69880-e162-11eb-98f5-c645bc9055e2.png)
"Core": { "screenshots": { "AdminTool": [ { "action": "setScreenshotsImagePath", "path": "Images/AutomaticScreenshots/AdminTools" }, { "action": "setScreenshotsRstPath", "path": "Images/AutomaticScreenshots/AdminTools" }, { "action": "resizeWindow", "width": 1232, "height": 768 }, {"action": "switchToMainFrame"}, {"action": "waitForElement", "element": "button#web"}, {"action": "click", "link": "button#web"}, {"action": "waitForElement", "element": "button#site"}, {"action": "click", "link": "button#site"}, {"action": "waitForElement", "element": "button#file"}, {"action": "click", "link": "button#file"}, {"action": "waitForElement", "element": "button#system"}, {"action": "click", "link": "button#system"}, {"action": "see", "text": "Maintenance"}, {"action": "click", "link": "Maintenance"}, {"action": "switchToContentFrame"}, {"action": "fillField", "field": "input#confirmationPassword", "value": "password"}, {"action": "click", "link": "Confirm"}, {"comment": "********************************************************"}, {"comment": "Maintenance Section of Admin Tool"}, {"comment": "********************************************************"}, {"action": "waitForText", "text": "Maintenance", "timeout": 5}, { "action": "resizeWindow", "width": 1024, "height": 512 }, { "action": "wait", "timeout": "1" }, {"action": "scrollModuleBodyTo", "toSelector": "button[data-require='TYPO3/CMS/Install/Module/Maintenance/LanguagePacks']"}, {"action": "drawArrow", "selector": "button[data-require='TYPO3/CMS/Install/Module/Maintenance/LanguagePacks']", "position": "right-middle"}, { "action": "makeScreenshotOfElement", "fileName": "ManageLanguage", "altText": "Manage language packs", "captionText": "Open the backend language administration module" }, {"action": "clearDrawings"}, {"action": "Click", "link": "Manage languages"}, { "action": "waitForModalDialogInMainFrame" }, { "action": "click", "link": "Add language" }, {"action": "see", "text": "Afrikaans"}, {"action": "switchToMainFrame"}, {"action": "drawBox", "selector": ".t3js-languagePacks-mainContent"}, {"action": "drawBox", "selector": "a[data-iso=af]"}, { "action": "makeScreenshotOfWindow", "fileName": "ManageLanguagePacksAddLanguage", "altText": "Add a language", "captionText": "Add the desired language" }, { "action": "click", "link": "button.t3js-modal-close" } ] } }, ![ManageLanguagePacksAddLanguage](https://user-images.githubusercontent.com/48202465/125155764-48d69880-e162-11eb-98f5-c645bc9055e2.png)
;\ /usr/bin/gcc -DPACKAGE_NAME=\"UniCC\" -DPACKAGE_TARNAME=\"unicc\" -DPACKAGE_VERSION=\"1.7.0\" -DPACKAGE_STRING=\"UniCC\ 1.7.0\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"unicc\" -DVERSION=\"1.7.0\" -DHAVE_LIBRT=1 -DUNICODE=1 -DUTF8=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_MEMSET=1 -DHAVE_STRRCHR=1 -I. -DTLTDIR=\"/usr/share/unicc/targets\" -g3 -gdwarf-2 -MT src/parse.o -MD -MP -MF $depbase.Tpo -c -o src/parse.o src/parse.c &&\ mv -f $depbase.Tpo $depbase.Po src/parse.par: In function β€˜parse_error’: src/parse.par:338:16: warning: pointer type mismatch in conditional expression 338 | parser->p_prefix, strbuf, FALSE ); *] | ^ ... depbase=
;\ /usr/bin/gcc -DPACKAGE_NAME=\"UniCC\" -DPACKAGE_TARNAME=\"unicc\" -DPACKAGE_VERSION=\"1.7.0\" -DPACKAGE_STRING=\"UniCC\ 1.7.0\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"unicc\" -DVERSION=\"1.7.0\" -DHAVE_LIBRT=1 -DUNICODE=1 -DUTF8=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_MEMSET=1 -DHAVE_STRRCHR=1 -I. -DTLTDIR=\"/usr/share/unicc/targets\" -g3 -gdwarf-2 -MT src/debug.o -MD -MP -MF $depbase.Tpo -c -o src/debug.o src/debug.c &&\ mv -f $depbase.Tpo $depbase.Po src/debug.c: In function β€˜dump_grammar’: src/debug.c:61:19: warning: too many arguments for format [-Wformat-extra-args] 61 | fprintf( stream, "\nGRAMMAR\n\n", | ^~~~~~~~~~~~~~~ ...
;\ /usr/bin/gcc -DPACKAGE_NAME=\"UniCC\" -DPACKAGE_TARNAME=\"unicc\" -DPACKAGE_VERSION=\"1.7.0\" -DPACKAGE_STRING=\"UniCC\ 1.7.0\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"unicc\" -DVERSION=\"1.7.0\" -DHAVE_LIBRT=1 -DUNICODE=1 -DUTF8=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_MEMSET=1 -DHAVE_STRRCHR=1 -I. -DTLTDIR=\"/usr/share/unicc/targets\" -g3 -gdwarf-2 -MT src/parse.o -MD -MP -MF $depbase.Tpo -c -o src/parse.o src/parse.c &&\ mv -f $depbase.Tpo $depbase.Po src/parse.c: In function β€˜parse_error’: src/parse.c:5596:16: warning: pointer type mismatch in conditional expression 5596 | pcb->buf : _symbols[ pcb->sym ].name, | ^
print_error( parser, expect ? ERR_PARSE_ERROR_EXPECT : ERR_PARSE_ERROR, ERRSTYLE_FATAL | ERRSTYLE_FILEINFO, parser->filename, pcb->line, pcb->sym == -1 ? pcb->buf : _symbols[ pcb->sym ].name, ///!!! here is the warning expect ? expect : "(unknown)" );
lib/username_1.c: In function β€˜pccl_compare’: lib/username_1.c:1523:14: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits] 1523 | return ret < 0 ? -1 : 1; | ^ ... src/xml.c: In function β€˜xml_internal_dtd’: src/xml.c:571:18: warning: operation on β€˜s’ may be undefined [-Wsequence-point] 571 | while( *( n = ++s + strspn(s, XML_WS) ) && *n != '>' ) | ^~~
make[1]: Entering directory '/home/mingo/dev/c/A_grammars/unicc' depbase=`echo src/parse.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ /usr/bin/gcc -DPACKAGE_NAME=\"UniCC\" -DPACKAGE_TARNAME=\"unicc\" -DPACKAGE_VERSION=\"1.7.0\" -DPACKAGE_STRING=\"UniCC\ 1.7.0\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"unicc\" -DVERSION=\"1.7.0\" -DHAVE_LIBRT=1 -DUNICODE=1 -DUTF8=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_MEMSET=1 -DHAVE_STRRCHR=1 -I. -DTLTDIR=\"/usr/share/unicc/targets\" -g3 -gdwarf-2 -MT src/parse.o -MD -MP -MF $depbase.Tpo -c -o src/parse.o src/parse.c &&\ mv -f $depbase.Tpo $depbase.Po src/parse.par: In function β€˜parse_error’: src/parse.par:338:16: warning: pointer type mismatch in conditional expression 338 | parser->p_prefix, strbuf, FALSE ); *] | ^ ... depbase=`echo src/debug.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ /usr/bin/gcc -DPACKAGE_NAME=\"UniCC\" -DPACKAGE_TARNAME=\"unicc\" -DPACKAGE_VERSION=\"1.7.0\" -DPACKAGE_STRING=\"UniCC\ 1.7.0\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"unicc\" -DVERSION=\"1.7.0\" -DHAVE_LIBRT=1 -DUNICODE=1 -DUTF8=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_MEMSET=1 -DHAVE_STRRCHR=1 -I. -DTLTDIR=\"/usr/share/unicc/targets\" -g3 -gdwarf-2 -MT src/debug.o -MD -MP -MF $depbase.Tpo -c -o src/debug.o src/debug.c &&\ mv -f $depbase.Tpo $depbase.Po src/debug.c: In function β€˜dump_grammar’: src/debug.c:61:19: warning: too many arguments for format [-Wformat-extra-args] 61 | fprintf( stream, "\nGRAMMAR\n\n", | ^~~~~~~~~~~~~~~ ...
make[1]: Entering directory '/home/mingo/dev/c/A_grammars/unicc' depbase=`echo src/parse.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ /usr/bin/gcc -DPACKAGE_NAME=\"UniCC\" -DPACKAGE_TARNAME=\"unicc\" -DPACKAGE_VERSION=\"1.7.0\" -DPACKAGE_STRING=\"UniCC\ 1.7.0\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"unicc\" -DVERSION=\"1.7.0\" -DHAVE_LIBRT=1 -DUNICODE=1 -DUTF8=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_MEMSET=1 -DHAVE_STRRCHR=1 -I. -DTLTDIR=\"/usr/share/unicc/targets\" -g3 -gdwarf-2 -MT src/parse.o -MD -MP -MF $depbase.Tpo -c -o src/parse.o src/parse.c &&\ mv -f $depbase.Tpo $depbase.Po src/parse.c: In function β€˜parse_error’: src/parse.c:5596:16: warning: pointer type mismatch in conditional expression 5596 | pcb->buf : _symbols[ pcb->sym ].name, | ^
print_error( parser, expect ? ERR_PARSE_ERROR_EXPECT : ERR_PARSE_ERROR, ERRSTYLE_FATAL | ERRSTYLE_FILEINFO, parser->filename, pcb->line, pcb->sym == -1 ? pcb->buf : _symbols[ pcb->sym ].name, ///!!! here is the warning expect ? expect : "(unknown)" );
lib/username_1.c: In function β€˜pccl_compare’: lib/username_1.c:1523:14: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits] 1523 | return ret < 0 ? -1 : 1; | ^ ... src/xml.c: In function β€˜xml_internal_dtd’: src/xml.c:571:18: warning: operation on β€˜s’ may be undefined [-Wsequence-point] 571 | while( *( n = ++s + strspn(s, XML_WS) ) && *n != '>' ) | ^~~
matt@LAPTOP-DH6V2O9C:~/rules_nodejs_tsp/rules_nodejs/examples/angular$ bazel build //src/app Starting local Bazel server and connecting to it... INFO: Invocation ID: 6c04d8dc-1a05-4839-9525-1afe3faa6844 WARNING: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/src/BUILD.bazel:261:12: target 'pwa' is both a rule and a file; please choose another name for the rule INFO: Analyzed target //src/app:app (169 packages loaded, 17329 targets configured). INFO: Found 1 target... WARNING: failed to create one or more convenience symlinks for prefix 'dist/': cannot create symbolic link dist/bin -> /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/bin: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/dist/bin (File exists) cannot create symbolic link dist/testlogs -> /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/testlogs: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/dist/testlogs (File exists) cannot create symbolic link bazel-out -> /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/bazel-out (File exists) cannot create symbolic link dist/out -> /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/dist/out (File exists) cannot create symbolic link dist/angular -> /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/dist/angular (File exists) Target //src/app:app up-to-date: /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/bin/src/app/app-routing.module.js /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/bin/src/app/app.component.js /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/bin/src/app/app.module.js /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/bin/src/app/service-worker.service.js INFO: Elapsed time: 506.786s, Critical Path: 111.27s INFO: 55 processes: 2 remote cache hit, 39 internal, 14 processwrapper-sandbox. INFO: Build completed successfully, 55 total actions
matt@LAPTOP-DH6V2O9C:~/rules_nodejs_tsp/rules_nodejs/examples/angular$ bazel build //src/app Starting local Bazel server and connecting to it... INFO: Invocation ID: 6c04d8dc-1a05-4839-9525-1afe3faa6844 WARNING: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/src/BUILD.bazel:261:12: target 'pwa' is both a rule and a file; please choose another name for the rule INFO: Analyzed target //src/app:app (169 packages loaded, 17329 targets configured). INFO: Found 1 target... WARNING: failed to create one or more convenience symlinks for prefix 'dist/': cannot create symbolic link dist/bin -> /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/bin: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/dist/bin (File exists) cannot create symbolic link dist/testlogs -> /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/testlogs: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/dist/testlogs (File exists) cannot create symbolic link bazel-out -> /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/bazel-out (File exists) cannot create symbolic link dist/out -> /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/dist/out (File exists) cannot create symbolic link dist/angular -> /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular: /home/matt/rules_nodejs_tsp/rules_nodejs/examples/angular/dist/angular (File exists) Target //src/app:app up-to-date: /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/bin/src/app/app-routing.module.js /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/bin/src/app/app.component.js /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/bin/src/app/app.module.js /home/matt/.cache/bazel/_bazel_matt/bce7af6da99ec20d4a83fa8d48de82ec/execroot/examples_angular/bazel-out/k8-fastbuild/bin/src/app/service-worker.service.js INFO: Elapsed time: 506.786s, Critical Path: 111.27s INFO: 55 processes: 2 remote cache hit, 39 internal, 14 processwrapper-sandbox. INFO: Build completed successfully, 55 total actions
$airflow dags trigger example_complex_params --conf '{"str_param": "hello"}' ValueError: Invalid input for param 'str_param': 'hello' is too long Failed validating 'maxLength' in schema: {'maxLength': 4, 'minLength': 2, 'type': 'string'} On instance: 'hello'
$airflow tasks test example_complex_params all_param 2021-07-15T08:43:45 -t '{"task_param": true}' ValueError: True is not of type 'string' Failed validating 'type' in schema: {'type': 'string'} On instance: True
$airflow dags trigger example_complex_params --conf '{"str_param": "hello"}' ValueError: Invalid input for param 'str_param': 'hello' is too long Failed validating 'maxLength' in schema: {'maxLength': 4, 'minLength': 2, 'type': 'string'} On instance: 'hello'
$airflow tasks test example_complex_params all_param 2021-07-15T08:43:45 -t '{"task_param": true}' ValueError: True is not of type 'string' Failed validating 'type' in schema: {'type': 'string'} On instance: True
== Physical Plan == GpuColumnarToRow (7) +- GpuProject (6) +- GpuRowToColumnar (5) +- * BroadcastHashJoin Inner BuildRight (4) :- GpuColumnarToRow (2) : +- GpuScan parquet (1) +- ReusedExchange (3) ===== Subqueries ===== Subquery:1 Hosting operator id = 1 Hosting Expression = cast(k#18 as bigint) IN dynamicpruning#28 BroadcastExchange (13) +- GpuColumnarToRow (12) +- GpuProject (11) +- GpuCoalesceBatches (10) +- GpuFilter (9) +- GpuScan parquet (8)
== Physical Plan == GpuColumnarToRow (7) +- GpuProject (6) +- GpuRowToColumnar (5) +- * BroadcastHashJoin Inner BuildRight (4) :- GpuColumnarToRow (2) : +- GpuScan parquet (1) +- ReusedExchange (3) ===== Subqueries ===== Subquery:1 Hosting operator id = 1 Hosting Expression = cast(k#18 as bigint) IN dynamicpruning#28 BroadcastExchange (13) +- GpuColumnarToRow (12) +- GpuProject (11) +- GpuCoalesceBatches (10) +- GpuFilter (9) +- GpuScan parquet (8)
Traceback (most recent call last): File "/afs/cern.ch/user/c/cmsbuild/public/jenkins/cms-bot/process-build-release-request", line 821, in <module> issue_body = issue.body.encode("ascii", "ignore").strip() AttributeError: 'NoneType' object has no attribute 'encode'
11634.911_TTbar_14TeV+2021_DD4hep+TTbar_14TeV_TuneCP5_GenSim+Digi+Reco+HARVEST+ALCA Step0-FAILED Step1-NOTRUN Step2-NOTRUN Step3-NOTRUN Step4-NOTRUN - time date Thu Aug 5 16:33:14 2021-date Thu Aug 5 16:32:23 2021; exit: 35584 0 0 0 0
Traceback (most recent call last): File "/afs/cern.ch/user/c/cmsbuild/public/jenkins/cms-bot/process-build-release-request", line 821, in <module> issue_body = issue.body.encode("ascii", "ignore").strip() AttributeError: 'NoneType' object has no attribute 'encode'
11634.911_TTbar_14TeV+2021_DD4hep+TTbar_14TeV_TuneCP5_GenSim+Digi+Reco+HARVEST+ALCA Step0-FAILED Step1-NOTRUN Step2-NOTRUN Step3-NOTRUN Step4-NOTRUN - time date Thu Aug 5 16:33:14 2021-date Thu Aug 5 16:32:23 2021; exit: 35584 0 0 0 0
php try { $obj = new HeavyClass(); } catch (RuntimeException $r) { throw $r; }
php try { $obj = new HeavyClass(); } catch (RuntimeException $r) { throw $r; }
Oops! Something went wrong! :( ESLint: 7.32.0 Error: Rules with suggestions must set the `meta.hasSuggestions` property to `true`.
Details: purescript> Compile error: purescript> Error 1 of 3: purescript> in module Control.Category purescript> at ../../../support/bower_components/purescript-prelude/src/Control/Category.purs:20:1 - 21:17 (line 20, column 1 - line 21, column 17) purescript> purescript> Could not match type purescript> purescript> Function t2 purescript> purescript> with type purescript> purescript> Semigroupoid$Dict purescript> purescript> purescript> while trying to match type t2 -> Semigroupoid Function purescript> with type Semigroupoid$Dict @t0 t1 purescript> while checking that expression \$__unused -> purescript> #dict Semigroupoid purescript> has type Semigroupoid$Dict @t0 t1 purescript> in value declaration categoryFn purescript> purescript> where t0 is an unknown type purescript> t1 is an unknown type purescript> t2 is an unknown type purescript> purescript> See https://github.com/purescript/documentation/blob/master/errors/TypesDoNotUnify.md for more information, purescript> or to contribute content related to this error.
Details: purescript> Compile error: purescript> Error 1 of 3: purescript> in module Control.Category purescript> at ../../../support/bower_components/purescript-prelude/src/Control/Category.purs:20:1 - 21:17 (line 20, column 1 - line 21, column 17) purescript> purescript> Could not match type purescript> purescript> Function t2 purescript> purescript> with type purescript> purescript> Semigroupoid$Dict purescript> purescript> purescript> while trying to match type t2 -> Semigroupoid Function purescript> with type Semigroupoid$Dict @t0 t1 purescript> while checking that expression \$__unused -> purescript> #dict Semigroupoid purescript> has type Semigroupoid$Dict @t0 t1 purescript> in value declaration categoryFn purescript> purescript> where t0 is an unknown type purescript> t1 is an unknown type purescript> t2 is an unknown type purescript> purescript> See https://github.com/purescript/documentation/blob/master/errors/TypesDoNotUnify.md for more information, purescript> or to contribute content related to this error.
plain Memory: 14 GB Boot ROM Version: VMW71.00V.13989454.B64.1906190538 Apple ROM Info: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]Welcome to the Virtual Machine SMC Version (system): 2.8f0 Serial Number (system): VMs41VeJyMwe hw.ncpu: 3 hw.byteorder: 1234 hw.memsize: 15032385536 --- [ 6%] Building CXX object lib/Core/CMakeFiles/lldCore.dir/DefinedAtom.cpp.o [ 7%] Building CXX object lib/Core/CMakeFiles/lldCore.dir/Error.cpp.o [ 8%] Building CXX object Common/CMakeFiles/lldCommon.dir/Args.cpp.o error: Connection to server timed out make[2]: *** [Common/CMakeFiles/lldCommon.dir/Args.cpp.o] Error 2 make[1]: *** [Common/CMakeFiles/lldCommon.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... error: Connection to server timed out make[2]: *** [lib/Core/CMakeFiles/lldCore.dir/Error.cpp.o] Error 2 make[2]: *** Waiting for unfinished jobs.... error: Connection to server timed out error: Connection to server timed out make[2]: *** [lib/Core/CMakeFiles/lldCore.dir/DefinedAtom.cpp.o] Error 2 clang: warning: argument unused during compilation: '-static-libstdc++' [-Wunused-command-line-argument] make[1]: *** [lib/Core/CMakeFiles/lldCore.dir/all] Error 2 make: *** [all] Error 2 command did not execute successfully, got: exit status: 2 build script failed, must exit now', /Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/cmake-0.1.44/src/lib.rs:885:5 finished in 25.271 seconds Build completed unsuccessfully in 1:50:53
plain Memory: 14 GB Boot ROM Version: VMW71.00V.13989454.B64.1906190538 Apple ROM Info: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]Welcome to the Virtual Machine SMC Version (system): 2.8f0 Serial Number (system): VMs41VeJyMwe hw.ncpu: 3 hw.byteorder: 1234 hw.memsize: 15032385536 --- [ 6%] Building CXX object lib/Core/CMakeFiles/lldCore.dir/DefinedAtom.cpp.o [ 7%] Building CXX object lib/Core/CMakeFiles/lldCore.dir/Error.cpp.o [ 8%] Building CXX object Common/CMakeFiles/lldCommon.dir/Args.cpp.o error: Connection to server timed out make[2]: *** [Common/CMakeFiles/lldCommon.dir/Args.cpp.o] Error 2 make[1]: *** [Common/CMakeFiles/lldCommon.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... error: Connection to server timed out make[2]: *** [lib/Core/CMakeFiles/lldCore.dir/Error.cpp.o] Error 2 make[2]: *** Waiting for unfinished jobs.... error: Connection to server timed out error: Connection to server timed out make[2]: *** [lib/Core/CMakeFiles/lldCore.dir/DefinedAtom.cpp.o] Error 2 clang: warning: argument unused during compilation: '-static-libstdc++' [-Wunused-command-line-argument] make[1]: *** [lib/Core/CMakeFiles/lldCore.dir/all] Error 2 make: *** [all] Error 2 command did not execute successfully, got: exit status: 2 build script failed, must exit now', /Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/cmake-0.1.44/src/lib.rs:885:5 finished in 25.271 seconds Build completed unsuccessfully in 1:50:53
bash /Users/damian/bin/gyb/gyb --email example@gmail.com --action restore-mbox --local-folder "/Users/damian/Downloads/gyb" --debug > label-failure-output.txt
bash /Users/damian/bin/gyb/gyb --email example@gmail.com --action restore-mbox --local-folder "/Users/damian/Downloads/gyb" --debug > label-failure-output.txt
bash # pwd /workspace # python demo_toolbox.py Traceback (most recent call last): File "demo_toolbox.py", line 2, in <module> from toolbox import Toolbox File "/workspace/toolbox/__init__.py", line 1, in <module> from toolbox.ui import UI File "/workspace/toolbox/ui.py", line 11, in <module> import sounddevice as sd File "/opt/conda/lib/python3.7/site-packages/sounddevice.py", line 71, in <module> raise OSError('PortAudio library not found') OSError: PortAudio library not found
bash # pwd /workspace # python demo_toolbox.py Traceback (most recent call last): File "demo_toolbox.py", line 2, in <module> from toolbox import Toolbox File "/workspace/toolbox/__init__.py", line 1, in <module> from toolbox.ui import UI File "/workspace/toolbox/ui.py", line 11, in <module> import sounddevice as sd File "/opt/conda/lib/python3.7/site-packages/sounddevice.py", line 71, in <module> raise OSError('PortAudio library not found') OSError: PortAudio library not found
RuntimeError: Invalid binary wheel, found the following shared library/libraries in purelib folder: prophet_model.bin diagnose print stanc stansummary diagnose.o print.o stansummary.o bernoulli main.o The wheel has to be platlib compliant in order to be repaired by auditwheel.
RuntimeError: Invalid binary wheel, found the following shared library/libraries in purelib folder: prophet_model.bin diagnose print stanc stansummary diagnose.o print.o stansummary.o bernoulli main.o The wheel has to be platlib compliant in order to be repaired by auditwheel.