logs
stringlengths
104
251k
βœ“ go test --tags=compliance -run "TestRemoteWrite/otelcollector/Gauge" -v ./ === RUN TestRemoteWrite === RUN TestRemoteWrite/otelcollector === RUN TestRemoteWrite/otelcollector/Gauge === PAUSE TestRemoteWrite/otelcollector/Gauge === CONT TestRemoteWrite/otelcollector/Gauge Downloading https://github.com/open-telemetry/opentelemetry-collector/releases/download/v0.37.0/otelcol_darwin_amd64 main_test.go:99: Error Trace: main_test.go:99 main_test.go:70 Error: Received unexpected error: fork/exec : no such file or directory Test: TestRemoteWrite/otelcollector/Gauge --- FAIL: TestRemoteWrite (0.51s) --- FAIL: TestRemoteWrite/otelcollector (0.00s) --- FAIL: TestRemoteWrite/otelcollector/Gauge (0.51s) FAIL FAIL github.com/prometheus/compliance/remote_write 1.291s FAIL
βœ“ go test --tags=compliance -run "TestRemoteWrite/otelcollector/Gauge" -v ./ === RUN TestRemoteWrite === RUN TestRemoteWrite/otelcollector === RUN TestRemoteWrite/otelcollector/Gauge === PAUSE TestRemoteWrite/otelcollector/Gauge === CONT TestRemoteWrite/otelcollector/Gauge Downloading https://github.com/open-telemetry/opentelemetry-collector/releases/download/v0.37.0/otelcol_darwin_amd64 main_test.go:99: Error Trace: main_test.go:99 main_test.go:70 Error: Received unexpected error: fork/exec : no such file or directory Test: TestRemoteWrite/otelcollector/Gauge --- FAIL: TestRemoteWrite (0.51s) --- FAIL: TestRemoteWrite/otelcollector (0.00s) --- FAIL: TestRemoteWrite/otelcollector/Gauge (0.51s) FAIL FAIL github.com/prometheus/compliance/remote_write 1.291s FAIL
[14] [ERROR] Exception in worker process Traceback (most recent call last): File "/venv/lib/python3.9/site-packages/gunicorn/arbiter.py", line 589, in spawn_worker worker.init_process() File "/venv/lib/python3.9/site-packages/uvicorn/workers.py", line 66, in init_process super(UvicornWorker, self).init_process() File "/venv/lib/python3.9/site-packages/gunicorn/workers/base.py", line 134, in init_process self.load_wsgi() File "/venv/lib/python3.9/site-packages/gunicorn/workers/base.py", line 146, in load_wsgi self.wsgi = self.app.wsgi() File "/venv/lib/python3.9/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/venv/lib/python3.9/site-packages/gunicorn/app/wsgiapp.py", line 58, in load return self.load_wsgiapp() File "/venv/lib/python3.9/site-packages/gunicorn/app/wsgiapp.py", line 48, in load_wsgiapp return util.import_app(self.app_uri) File "/venv/lib/python3.9/site-packages/gunicorn/util.py", line 359, in import_app mod = importlib.import_module(module) File "/usr/local/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked File "<frozen importlib._bootstrap>", line 680, in _load_unlocked File "<frozen importlib._bootstrap_external>", line 850, in exec_module File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed File "/app/main.py", line 15, in <module> logger.add( File "/venv/lib/python3.9/site-packages/loguru/_logger.py", line 762, in add wrapped_sink = FileSink(path, **kwargs) File "/venv/lib/python3.9/site-packages/loguru/_file_sink.py", line 166, in __init__ self._initialize_file() File "/venv/lib/python3.9/site-packages/loguru/_file_sink.py", line 186, in _initialize_file self._file = open(path, **self._kwargs) PermissionError: [Errno 13] Permission denied: '/app/veniq_web_service_debug_45531b7a-85a4-11ec-a73f-0242ac110002.log'
from loguru import logger pid = str(uuid.uuid1()) logger.add( f"veniq_web_service_debug_{pid}.log", filter=lambda record: record["level"].name == "DEBUG", rotation="500 MB", backtrace=True, diagnose=True, compression="zip", enqueue=True) logger.add( f"veniq_web_service_info_{pid}.log", filter=lambda record: record["level"].name == "INFO", rotation="200 MB", backtrace=True, diagnose=True, enqueue=True) logger.add( f"veniq_web_service_error_{pid}.log", filter=lambda record: record["level"].name == "ERROR", rotation="500 MB", backtrace=True, diagnose=True, enqueue=True) logger.add( f"veniq_web_service_{pid}.log", filter=lambda record: record["level"].name in ["ERROR", "INFO", "DEBUG"], rotation="700 MB", backtrace=True, diagnose=True, compression="zip", serialize=True, enqueue=True)
[14] [ERROR] Exception in worker process Traceback (most recent call last): File "/venv/lib/python3.9/site-packages/gunicorn/arbiter.py", line 589, in spawn_worker worker.init_process() File "/venv/lib/python3.9/site-packages/uvicorn/workers.py", line 66, in init_process super(UvicornWorker, self).init_process() File "/venv/lib/python3.9/site-packages/gunicorn/workers/base.py", line 134, in init_process self.load_wsgi() File "/venv/lib/python3.9/site-packages/gunicorn/workers/base.py", line 146, in load_wsgi self.wsgi = self.app.wsgi() File "/venv/lib/python3.9/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/venv/lib/python3.9/site-packages/gunicorn/app/wsgiapp.py", line 58, in load return self.load_wsgiapp() File "/venv/lib/python3.9/site-packages/gunicorn/app/wsgiapp.py", line 48, in load_wsgiapp return util.import_app(self.app_uri) File "/venv/lib/python3.9/site-packages/gunicorn/util.py", line 359, in import_app mod = importlib.import_module(module) File "/usr/local/lib/python3.9/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "<frozen importlib._bootstrap>", line 1030, in _gcd_import File "<frozen importlib._bootstrap>", line 1007, in _find_and_load File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked File "<frozen importlib._bootstrap>", line 680, in _load_unlocked File "<frozen importlib._bootstrap_external>", line 850, in exec_module File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed File "/app/main.py", line 15, in <module> logger.add( File "/venv/lib/python3.9/site-packages/loguru/_logger.py", line 762, in add wrapped_sink = FileSink(path, **kwargs) File "/venv/lib/python3.9/site-packages/loguru/_file_sink.py", line 166, in __init__ self._initialize_file() File "/venv/lib/python3.9/site-packages/loguru/_file_sink.py", line 186, in _initialize_file self._file = open(path, **self._kwargs) PermissionError: [Errno 13] Permission denied: '/app/veniq_web_service_debug_45531b7a-85a4-11ec-a73f-0242ac110002.log'
from loguru import logger pid = str(uuid.uuid1()) logger.add( f"veniq_web_service_debug_{pid}.log", filter=lambda record: record["level"].name == "DEBUG", rotation="500 MB", backtrace=True, diagnose=True, compression="zip", enqueue=True) logger.add( f"veniq_web_service_info_{pid}.log", filter=lambda record: record["level"].name == "INFO", rotation="200 MB", backtrace=True, diagnose=True, enqueue=True) logger.add( f"veniq_web_service_error_{pid}.log", filter=lambda record: record["level"].name == "ERROR", rotation="500 MB", backtrace=True, diagnose=True, enqueue=True) logger.add( f"veniq_web_service_{pid}.log", filter=lambda record: record["level"].name in ["ERROR", "INFO", "DEBUG"], rotation="700 MB", backtrace=True, diagnose=True, compression="zip", serialize=True, enqueue=True)
Listening on ws://localhost:3001 Error: ENOENT: no such file or directory, stat 'C:\Users\username_0\Desktop\TOSIOS-master\packages\server\src\public\index.html'
import React, { FC, Fragment, useEffect } from 'react'; import auth, { FirebaseAuthTypes } from '@react-native-firebase/auth'; import { useSetRecoilState } from 'recoil'; import { firebaseUser } from '../../../state/user/atoms/firebaseUser'; export const AuthProvider: FC = ({ children }) => { const setUser = useSetRecoilState(firebaseUser); const onAuthStateChanged = (user: FirebaseAuthTypes.User | null) => setUser(user); useEffect(() => { const subscriber = auth().onAuthStateChanged(onAuthStateChanged); return subscriber; }, []); return <Fragment children={children} />; };
"dependencies": { "@expo/vector-icons": "^12.0.0", "@react-native-async-storage/async-storage": "~1.15.0", "@react-native-firebase/analytics": "^14.3.1", "@react-native-firebase/app": "^14.3.1", "@react-native-firebase/auth": "^14.3.1", "@react-native-firebase/crashlytics": "^14.3.1", "@react-native-firebase/database": "^14.3.1", "@react-native-firebase/in-app-messaging": "^14.3.1", "@react-native-firebase/installations": "^14.3.1", "@react-native-firebase/messaging": "^14.3.1", "@react-native-firebase/remote-config": "^14.3.1", "@react-navigation/bottom-tabs": "^6.0.5", "@react-navigation/native": "^6.0.2", "@react-navigation/native-stack": "^6.1.0", "axios": "^0.25.0", "expo": "~44.0.0", "expo-asset": "~8.4.4", "expo-constants": "~13.0.0", "expo-dev-client": "~0.8.4", "expo-font": "~10.0.4", "expo-linking": "~3.0.0", "expo-splash-screen": "~0.14.0", "expo-status-bar": "~1.2.0", "expo-web-browser": "~10.1.0", "react": "17.0.1", "react-dom": "17.0.1", "react-hook-form": "^7.26.1", "react-native": "0.64.3", "react-native-paper": "^4.11.2", "react-native-safe-area-context": "3.3.2", "react-native-screens": "~3.10.1", "react-native-web": "0.17.1", "recoil": "^0.6.1" }, "devDependencies": { "@babel/core": "^7.12.9", "@types/react": "~17.0.21", "@types/react-native": "~0.64.12", "jest": "^26.6.3", "jest-expo": "~44.0.1", "react-test-renderer": "17.0.1", "typescript": "~4.3.5" },
"dependencies": { "@expo/vector-icons": "^12.0.0", "@react-native-async-storage/async-storage": "~1.15.0", "@react-native-firebase/analytics": "^14.3.1", "@react-native-firebase/app": "^14.3.1", "@react-native-firebase/auth": "^14.3.1", "@react-native-firebase/crashlytics": "^14.3.1", "@react-native-firebase/database": "^14.3.1", "@react-native-firebase/in-app-messaging": "^14.3.1", "@react-native-firebase/installations": "^14.3.1", "@react-native-firebase/messaging": "^14.3.1", "@react-native-firebase/remote-config": "^14.3.1", "@react-navigation/bottom-tabs": "^6.0.5", "@react-navigation/native": "^6.0.2", "@react-navigation/native-stack": "^6.1.0", "axios": "^0.25.0", "expo": "~44.0.0", "expo-asset": "~8.4.4", "expo-constants": "~13.0.0", "expo-dev-client": "~0.8.4", "expo-font": "~10.0.4", "expo-linking": "~3.0.0", "expo-splash-screen": "~0.14.0", "expo-status-bar": "~1.2.0", "expo-web-browser": "~10.1.0", "react": "17.0.1", "react-dom": "17.0.1", "react-hook-form": "^7.26.1", "react-native": "0.64.3", "react-native-paper": "^4.11.2", "react-native-safe-area-context": "3.3.2", "react-native-screens": "~3.10.1", "react-native-web": "0.17.1", "recoil": "^0.6.1" }, "devDependencies": { "@babel/core": "^7.12.9", "@types/react": "~17.0.21", "@types/react-native": "~0.64.12", "jest": "^26.6.3", "jest-expo": "~44.0.1", "react-test-renderer": "17.0.1", "typescript": "~4.3.5" },
error[E0308]: mismatched types --> lib.rs:23:9 | 23 | #[brush::modifiers(when_not_paused)] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct
24 | pub fn flip(&mut self) -> Result<(), PausableError> { | ------------------------- expected
ab -c 100 -n 100 https://staging.sciety.org/groups/biophysics-colab/evaluated-articles This is ApacheBench, Version 2.3 <$Revision: 1879490 $> Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Licensed to The Apache Software Foundation, http://www.apache.org/ Benchmarking staging.sciety.org (be patient)...SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection ..done Server Software: Server Hostname: staging.sciety.org Server Port: 443 SSL/TLS Protocol: TLSv1.2,ECDHE-RSA-AES128-GCM-SHA256,2048,128 Server Temp Key: X25519 253 bits TLS Server Name: staging.sciety.org Document Path: /groups/biophysics-colab/evaluated-articles Document Length: 13930 bytes Concurrency Level: 100 Time taken for tests: 61.393 seconds Complete requests: 100 Failed requests: 19 (Connect: 0, Receive: 0, Length: 19, Exceptions: 0) Total transferred: 1146555 bytes HTML transferred: 1128330 bytes Requests per second: 1.63 [#/sec] (mean) Time per request: 61393.336 [ms] (mean) Time per request: 613.933 [ms] (mean, across all concurrent requests) Transfer rate: 18.24 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 360 50.0 373 443 Processing: 828 35042 19435.3 36440 59881 Waiting: 0 23748 19208.3 22818 58909 Total: 1128 35402 19461.4 36812 59886 Percentage of the requests served within a certain time (ms) 50% 36812 66% 48247 75% 55435 80% 59293 90% 59883 95% 59883 98% 59883 99% 59886 100% 59886 (longest request)
ab -c 100 -n 100 https://staging.sciety.org/groups/biophysics-colab/evaluated-articles This is ApacheBench, Version 2.3 <$Revision: 1879490 $> Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Licensed to The Apache Software Foundation, http://www.apache.org/ Benchmarking staging.sciety.org (be patient)...SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection SSL read failed (5) - closing connection ..done Server Software: Server Hostname: staging.sciety.org Server Port: 443 SSL/TLS Protocol: TLSv1.2,ECDHE-RSA-AES128-GCM-SHA256,2048,128 Server Temp Key: X25519 253 bits TLS Server Name: staging.sciety.org Document Path: /groups/biophysics-colab/evaluated-articles Document Length: 13930 bytes Concurrency Level: 100 Time taken for tests: 61.393 seconds Complete requests: 100 Failed requests: 19 (Connect: 0, Receive: 0, Length: 19, Exceptions: 0) Total transferred: 1146555 bytes HTML transferred: 1128330 bytes Requests per second: 1.63 [#/sec] (mean) Time per request: 61393.336 [ms] (mean) Time per request: 613.933 [ms] (mean, across all concurrent requests) Transfer rate: 18.24 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 360 50.0 373 443 Processing: 828 35042 19435.3 36440 59881 Waiting: 0 23748 19208.3 22818 58909 Total: 1128 35402 19461.4 36812 59886 Percentage of the requests served within a certain time (ms) 50% 36812 66% 48247 75% 55435 80% 59293 90% 59883 95% 59883 98% 59883 99% 59886 100% 59886 (longest request)
=== UNHANDLED REJECTION === Reason: RangeError: No available nodes. at new Player (/home/runner/Proteksiyon-Release/node_modules/erela.js/dist/structures/Player.js:82:19) at Manager.create (/home/runner/Proteksiyon-Release/node_modules/erela.js/dist/structures/Manager.js:205:16) at Client.<anonymous> (/home/runner/Proteksiyon-Release/handlers/erela_events/musicsystem.js:69:51) at Client.emit (node:events:402:35) at InteractionCreateAction.handle (/home/runner/Proteksiyon-Release/node_modules/discord.js/src/client/actions/InteractionCreate.js:74:12) at Object.module.exports [as INTERACTION_CREATE] (/home/runner/Proteksiyon-Release/node_modules/discord.js/src/client/websocket/handlers/INTERACTION_CREATE.js:4:36) at WebSocketManager.handlePacket (/home/runner/Proteksiyon-Release/node_modules/discord.js/src/client/websocket/WebSocketManager.js:351:31) at WebSocketShard.onPacket (/home/runner/Proteksiyon-Release/node_modules/discord.js/src/client/websocket/WebSocketShard.js:444:22) at WebSocketShard.onMessage (/home/runner/Proteksiyon-Release/node_modules/discord.js/src/client/websocket/WebSocketShard.js:301:10) at WebSocket.onMessage (/home/runner/Proteksiyon-Release/node_modules/ws/lib/event-target.js:199:18) at WebSocket.emit (node:events:390:28) at Receiver.receiverOnMessage (/home/runner/Proteksiyon-Release/node_modules/ws/lib/websocket.js:1098:20) at Receiver.emit (node:events:390:28) at Receiver.dataMessage (/home/runner/Proteksiyon-Release/node_modules/ws/lib/receiver.js:528:14) at Receiver.getData (/home/runner/Proteksiyon-Release/node_modules/ws/lib/receiver.js:446:17) at Receiver.startLoop (/home/runner/Proteksiyon-Release/node_modules/ws/lib/receiver.js:148:22) at Receiver._write (/home/runner/Proteksiyon-Release/node_modules/ws/lib/receiver.js:83:10) at writeOrBuffer (node:internal/streams/writable:389:12) at _write (node:internal/streams/writable:330:10) at Receiver.Writable.write (node:internal/streams/writable:334:10) at TLSSocket.socketOnData (/home/runner/Proteksiyon-Release/node_modules/ws/lib/websocket.js:1192:35) at TLSSocket.emit (node:events:390:28) === UNHANDLED REJECTION ===
=== UNHANDLED REJECTION === Reason: RangeError: No available nodes. at new Player (/home/runner/Proteksiyon-Release/node_modules/erela.js/dist/structures/Player.js:82:19) at Manager.create (/home/runner/Proteksiyon-Release/node_modules/erela.js/dist/structures/Manager.js:205:16) at Client.<anonymous> (/home/runner/Proteksiyon-Release/handlers/erela_events/musicsystem.js:69:51) at Client.emit (node:events:402:35) at InteractionCreateAction.handle (/home/runner/Proteksiyon-Release/node_modules/discord.js/src/client/actions/InteractionCreate.js:74:12) at Object.module.exports [as INTERACTION_CREATE] (/home/runner/Proteksiyon-Release/node_modules/discord.js/src/client/websocket/handlers/INTERACTION_CREATE.js:4:36) at WebSocketManager.handlePacket (/home/runner/Proteksiyon-Release/node_modules/discord.js/src/client/websocket/WebSocketManager.js:351:31) at WebSocketShard.onPacket (/home/runner/Proteksiyon-Release/node_modules/discord.js/src/client/websocket/WebSocketShard.js:444:22) at WebSocketShard.onMessage (/home/runner/Proteksiyon-Release/node_modules/discord.js/src/client/websocket/WebSocketShard.js:301:10) at WebSocket.onMessage (/home/runner/Proteksiyon-Release/node_modules/ws/lib/event-target.js:199:18) at WebSocket.emit (node:events:390:28) at Receiver.receiverOnMessage (/home/runner/Proteksiyon-Release/node_modules/ws/lib/websocket.js:1098:20) at Receiver.emit (node:events:390:28) at Receiver.dataMessage (/home/runner/Proteksiyon-Release/node_modules/ws/lib/receiver.js:528:14) at Receiver.getData (/home/runner/Proteksiyon-Release/node_modules/ws/lib/receiver.js:446:17) at Receiver.startLoop (/home/runner/Proteksiyon-Release/node_modules/ws/lib/receiver.js:148:22) at Receiver._write (/home/runner/Proteksiyon-Release/node_modules/ws/lib/receiver.js:83:10) at writeOrBuffer (node:internal/streams/writable:389:12) at _write (node:internal/streams/writable:330:10) at Receiver.Writable.write (node:internal/streams/writable:334:10) at TLSSocket.socketOnData (/home/runner/Proteksiyon-Release/node_modules/ws/lib/websocket.js:1192:35) at TLSSocket.emit (node:events:390:28) === UNHANDLED REJECTION ===
app.Get("/home", func(c *fiber.Ctx) error { logInfo("GET /home") // Some actions return c.SendFile("home.html", true) })
app.Get("/home", func(c *fiber.Ctx) error { logInfo("GET /home") // Some actions return c.SendFile("home.html", true) })
MaxRetryError("HTTPConnectionPool(host='127.0.0.1', port=55873): Max retries exceeded with url: /session/2dd60780e17e5d8d8e1cdf9496086729/window_handles
$ pip download --no-binary=:all: --dest wheels/ --no-build-isolation importlib_metadata==4.11.1 Collecting importlib_metadata==4.11.1 Using cached importlib_metadata-4.11.1.tar.gz (42 kB) Preparing metadata (pyproject.toml) ... done WARNING: Requested importlib_metadata==4.11.1 from https://files.pythonhosted.org/packages/82/10/600b88188a4e94562cfdf202ef1aca6fedda0723acae8a47376350ec0d5d/importlib_metadata-4.11.1.tar.gz#sha256=175f4ee440a0317f6e8d81b7f8d4869f93316170a65ad2b007d2929186c8052c, but installing version 0.0.0 Discarding https://files.pythonhosted.org/packages/82/10/600b88188a4e94562cfdf202ef1aca6fedda0723acae8a47376350ec0d5d/importlib_metadata-4.11.1.tar.gz#sha256=175f4ee440a0317f6e8d81b7f8d4869f93316170a65ad2b007d2929186c8052c (from https://pypi.org/simple/importlib-metadata/) (requires-python:>=3.7): Requested importlib_metadata==4.11.1 from https://files.pythonhosted.org/packages/82/10/600b88188a4e94562cfdf202ef1aca6fedda0723acae8a47376350ec0d5d/importlib_metadata-4.11.1.tar.gz#sha256=175f4ee440a0317f6e8d81b7f8d4869f93316170a65ad2b007d2929186c8052c has inconsistent version: filename has '4.11.1', but metadata has '0.0.0' ERROR: Could not find a version that satisfies the requirement importlib_metadata==4.11.1 (from versions: 0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.10, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 1.0.0, 1.1.0, 1.1.1, 1.1.2, 1.1.3, 1.2.0, 1.3.0, 1.4.0, 1.5.0, 1.5.1, 1.5.2, 1.6.0, 1.6.1, 1.7.0, 2.0.0, 2.1.0, 2.1.1, 2.1.2, 2.1.3, 3.0.0, 3.1.0, 3.1.1, 3.2.0, 3.3.0, 3.4.0, 3.5.0, 3.6.0, 3.7.0, 3.7.1, 3.7.2, 3.7.3, 3.8.0, 3.8.1, 3.8.2, 3.9.0, 3.9.1, 3.10.0, 3.10.1, 4.0.0, 4.0.1, 4.1.0, 4.2.0, 4.3.0, 4.3.1, 4.4.0, 4.5.0, 4.6.0, 4.6.1, 4.6.2, 4.6.3, 4.6.4, 4.7.0, 4.7.1, 4.8.0, 4.8.1, 4.8.2, 4.8.3, 4.9.0, 4.10.0, 4.10.1, 4.11.0, 4.11.1) ERROR: No matching distribution found for importlib_metadata==4.11.1
$ pip download --no-binary=:all: --dest wheels/ --no-build-isolation importlib_metadata==4.11.1 Collecting importlib_metadata==4.11.1 Using cached importlib_metadata-4.11.1.tar.gz (42 kB) Preparing metadata (pyproject.toml) ... done WARNING: Requested importlib_metadata==4.11.1 from https://files.pythonhosted.org/packages/82/10/600b88188a4e94562cfdf202ef1aca6fedda0723acae8a47376350ec0d5d/importlib_metadata-4.11.1.tar.gz#sha256=175f4ee440a0317f6e8d81b7f8d4869f93316170a65ad2b007d2929186c8052c, but installing version 0.0.0 Discarding https://files.pythonhosted.org/packages/82/10/600b88188a4e94562cfdf202ef1aca6fedda0723acae8a47376350ec0d5d/importlib_metadata-4.11.1.tar.gz#sha256=175f4ee440a0317f6e8d81b7f8d4869f93316170a65ad2b007d2929186c8052c (from https://pypi.org/simple/importlib-metadata/) (requires-python:>=3.7): Requested importlib_metadata==4.11.1 from https://files.pythonhosted.org/packages/82/10/600b88188a4e94562cfdf202ef1aca6fedda0723acae8a47376350ec0d5d/importlib_metadata-4.11.1.tar.gz#sha256=175f4ee440a0317f6e8d81b7f8d4869f93316170a65ad2b007d2929186c8052c has inconsistent version: filename has '4.11.1', but metadata has '0.0.0' ERROR: Could not find a version that satisfies the requirement importlib_metadata==4.11.1 (from versions: 0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.10, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 1.0.0, 1.1.0, 1.1.1, 1.1.2, 1.1.3, 1.2.0, 1.3.0, 1.4.0, 1.5.0, 1.5.1, 1.5.2, 1.6.0, 1.6.1, 1.7.0, 2.0.0, 2.1.0, 2.1.1, 2.1.2, 2.1.3, 3.0.0, 3.1.0, 3.1.1, 3.2.0, 3.3.0, 3.4.0, 3.5.0, 3.6.0, 3.7.0, 3.7.1, 3.7.2, 3.7.3, 3.8.0, 3.8.1, 3.8.2, 3.9.0, 3.9.1, 3.10.0, 3.10.1, 4.0.0, 4.0.1, 4.1.0, 4.2.0, 4.3.0, 4.3.1, 4.4.0, 4.5.0, 4.6.0, 4.6.1, 4.6.2, 4.6.3, 4.6.4, 4.7.0, 4.7.1, 4.8.0, 4.8.1, 4.8.2, 4.8.3, 4.9.0, 4.10.0, 4.10.1, 4.11.0, 4.11.1) ERROR: No matching distribution found for importlib_metadata==4.11.1
The extra prompt message. It is similar to help. Usage example: to display error message and prompt message at the same time
The extra prompt message. It is similar to help. Usage example: to display error message and prompt message at the same time
$ less metrics-in-grafana.json | grep "unsupported" | sort --unique "unsupported panel type: \"agenty-flowcharting-panel\"" "unsupported panel type: \"agenty-flowcharting-panel\"", "unsupported panel type: \"alertGroups\"", "unsupported panel type: \"alertlist\"" "unsupported panel type: \"alertlist\"", "unsupported panel type: \"barchart\"" "unsupported panel type: \"barchart\"", "unsupported panel type: \"btplc-trend-box-panel\"", "unsupported panel type: \"canvas\"", "unsupported panel type: \"dashlist\"" "unsupported panel type: \"dashlist\"", "unsupported panel type: \"flant-statusmap-panel\"" "unsupported panel type: \"gauge\"" "unsupported panel type: \"gauge\"", "unsupported panel type: \"geomap\"" "unsupported panel type: \"geomap\"", "unsupported panel type: \"gettingstarted\"", "unsupported panel type: \"grafana-piechart-panel\"" "unsupported panel type: \"grafana-piechart-panel\"", "unsupported panel type: \"grafana-polystat-panel\"" "unsupported panel type: \"grafana-polystat-panel\"", "unsupported panel type: \"grafana-worldmap-panel\"" "unsupported panel type: \"grafana-worldmap-panel\"", "unsupported panel type: \"histogram\"", "unsupported panel type: \"homelinks\"" "unsupported panel type: \"logs\"" "unsupported panel type: \"logs\"", "unsupported panel type: \"marcusolsson-treemap-panel\"", "unsupported panel type: \"natel-discrete-panel\"" "unsupported panel type: \"natel-discrete-panel\"", "unsupported panel type: \"news\"" "unsupported panel type: \"news\"", "unsupported panel type: \"nodeGraph\"", "unsupported panel type: \"piechart\"" "unsupported panel type: \"piechart\"", "unsupported panel type: \"pluginlist\"", "unsupported panel type: \"row\"" "unsupported panel type: \"row\"", "unsupported panel type: \"ryantxu-ajax-panel\"", "unsupported panel type: \"state-timeline\"", "unsupported panel type: \"status-history\"", "unsupported panel type: \"table-old\"" "unsupported panel type: \"table-old\"", "unsupported panel type: \"text\"" "unsupported panel type: \"text\"", "unsupported panel type: \"text2\"", "unsupported panel type: \"timeseries\"" "unsupported panel type: \"welcome\"", "unsupported panel type: \"xychart\"",
$ less metrics-in-grafana.json | grep "unsupported" | sort --unique "unsupported panel type: \"agenty-flowcharting-panel\"" "unsupported panel type: \"agenty-flowcharting-panel\"", "unsupported panel type: \"alertGroups\"", "unsupported panel type: \"alertlist\"" "unsupported panel type: \"alertlist\"", "unsupported panel type: \"barchart\"" "unsupported panel type: \"barchart\"", "unsupported panel type: \"btplc-trend-box-panel\"", "unsupported panel type: \"canvas\"", "unsupported panel type: \"dashlist\"" "unsupported panel type: \"dashlist\"", "unsupported panel type: \"flant-statusmap-panel\"" "unsupported panel type: \"gauge\"" "unsupported panel type: \"gauge\"", "unsupported panel type: \"geomap\"" "unsupported panel type: \"geomap\"", "unsupported panel type: \"gettingstarted\"", "unsupported panel type: \"grafana-piechart-panel\"" "unsupported panel type: \"grafana-piechart-panel\"", "unsupported panel type: \"grafana-polystat-panel\"" "unsupported panel type: \"grafana-polystat-panel\"", "unsupported panel type: \"grafana-worldmap-panel\"" "unsupported panel type: \"grafana-worldmap-panel\"", "unsupported panel type: \"histogram\"", "unsupported panel type: \"homelinks\"" "unsupported panel type: \"logs\"" "unsupported panel type: \"logs\"", "unsupported panel type: \"marcusolsson-treemap-panel\"", "unsupported panel type: \"natel-discrete-panel\"" "unsupported panel type: \"natel-discrete-panel\"", "unsupported panel type: \"news\"" "unsupported panel type: \"news\"", "unsupported panel type: \"nodeGraph\"", "unsupported panel type: \"piechart\"" "unsupported panel type: \"piechart\"", "unsupported panel type: \"pluginlist\"", "unsupported panel type: \"row\"" "unsupported panel type: \"row\"", "unsupported panel type: \"ryantxu-ajax-panel\"", "unsupported panel type: \"state-timeline\"", "unsupported panel type: \"status-history\"", "unsupported panel type: \"table-old\"" "unsupported panel type: \"table-old\"", "unsupported panel type: \"text\"" "unsupported panel type: \"text\"", "unsupported panel type: \"text2\"", "unsupported panel type: \"timeseries\"" "unsupported panel type: \"welcome\"", "unsupported panel type: \"xychart\"",
`SqliteException (SqliteException(1555): UNIQUE constraint failed: clients.id, constraint failed (code 1555) Causing statement: INSERT INTO clients (id, first_name, middle_name, last_name, first_name_eng, last_name_eng, legal_name, is_individual, iin, is_resident, country_id, sex_id, economics_sector_id, activity_kind_id, phone, email, address, document_type_id, document_number, document_issue_date, driver_license_number, driver_license_number_issue_date, class, birth_date, is_experienced, is_privileged, is_driver, is_insurer) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?))`
Traceback (most recent call last): File "test.py", line 17, in <module> list_images = conn.list_images() File "/usr/local/lib/python3.8/dist-packages/libcloud/compute/drivers/openstack.py", line 438, in list_images self.connection.request('/images/detail').object, ex_only_active) File "/usr/local/lib/python3.8/dist-packages/libcloud/common/openstack.py", line 245, in request return super().request(action=action, params=params, data=data, File "/usr/local/lib/python3.8/dist-packages/libcloud/common/base.py", line 567, in request action = self.morph_action_hook(action) File "/usr/local/lib/python3.8/dist-packages/libcloud/common/openstack.py", line 319, in morph_action_hook self._populate_hosts_and_request_paths() File "/usr/local/lib/python3.8/dist-packages/libcloud/common/openstack.py", line 332, in _populate_hosts_and_request_paths osa = self.get_auth_class() File "/usr/local/lib/python3.8/dist-packages/libcloud/common/openstack.py", line 220, in get_auth_class self._osa = cls(auth_url=auth_url, TypeError: __init__() got an unexpected keyword argument 'auth_cache'
bash ====================================================================== ERROR: test_ex_force_auth_version_all_possible_values (libcloud.test.compute.test_openstack.OpenStack_1_1_Auth_2_0_Tests) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/kami/w/libcloud/libcloud/libcloud/test/compute/test_openstack.py", line 3997, in test_ex_force_auth_version_all_possible_values list_images = driver.list_images() File "/home/kami/w/libcloud/libcloud/libcloud/compute/drivers/openstack.py", line 457, in list_images self.connection.request("/images/detail").object, ex_only_active File "/home/kami/w/libcloud/libcloud/libcloud/common/openstack.py", line 276, in request raw=raw, File "/home/kami/w/libcloud/libcloud/libcloud/common/base.py", line 603, in request action = self.morph_action_hook(action) File "/home/kami/w/libcloud/libcloud/libcloud/common/openstack.py", line 353, in morph_action_hook self._populate_hosts_and_request_paths() File "/home/kami/w/libcloud/libcloud/libcloud/common/openstack.py", line 366, in _populate_hosts_and_request_paths osa = self.get_auth_class() File "/home/kami/w/libcloud/libcloud/libcloud/common/openstack.py", line 253, in get_auth_class auth_cache=self._ex_auth_cache, TypeError: __init__() got an unexpected keyword argument 'tenant_domain_id'
Traceback (most recent call last): File "test.py", line 17, in <module> list_images = conn.list_images() File "/usr/local/lib/python3.8/dist-packages/libcloud/compute/drivers/openstack.py", line 438, in list_images self.connection.request('/images/detail').object, ex_only_active) File "/usr/local/lib/python3.8/dist-packages/libcloud/common/openstack.py", line 245, in request return super().request(action=action, params=params, data=data, File "/usr/local/lib/python3.8/dist-packages/libcloud/common/base.py", line 567, in request action = self.morph_action_hook(action) File "/usr/local/lib/python3.8/dist-packages/libcloud/common/openstack.py", line 319, in morph_action_hook self._populate_hosts_and_request_paths() File "/usr/local/lib/python3.8/dist-packages/libcloud/common/openstack.py", line 332, in _populate_hosts_and_request_paths osa = self.get_auth_class() File "/usr/local/lib/python3.8/dist-packages/libcloud/common/openstack.py", line 220, in get_auth_class self._osa = cls(auth_url=auth_url, TypeError: __init__() got an unexpected keyword argument 'auth_cache'
bash ====================================================================== ERROR: test_ex_force_auth_version_all_possible_values (libcloud.test.compute.test_openstack.OpenStack_1_1_Auth_2_0_Tests) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/kami/w/libcloud/libcloud/libcloud/test/compute/test_openstack.py", line 3997, in test_ex_force_auth_version_all_possible_values list_images = driver.list_images() File "/home/kami/w/libcloud/libcloud/libcloud/compute/drivers/openstack.py", line 457, in list_images self.connection.request("/images/detail").object, ex_only_active File "/home/kami/w/libcloud/libcloud/libcloud/common/openstack.py", line 276, in request raw=raw, File "/home/kami/w/libcloud/libcloud/libcloud/common/base.py", line 603, in request action = self.morph_action_hook(action) File "/home/kami/w/libcloud/libcloud/libcloud/common/openstack.py", line 353, in morph_action_hook self._populate_hosts_and_request_paths() File "/home/kami/w/libcloud/libcloud/libcloud/common/openstack.py", line 366, in _populate_hosts_and_request_paths osa = self.get_auth_class() File "/home/kami/w/libcloud/libcloud/libcloud/common/openstack.py", line 253, in get_auth_class auth_cache=self._ex_auth_cache, TypeError: __init__() got an unexpected keyword argument 'tenant_domain_id'
android.os.DeadObjectException: null at android.os.BinderProxy.transactNative(BinderProxy.java) at android.os.BinderProxy.transact(BinderProxy.java:545) at com.google.android.a.a.b(BaseProxy.java:2) at com.google.android.finsky.externalreferrer.IGetInstallReferrerService$Stub$Proxy.c(IGetInstallReferrerService.java:3) at com.android.installreferrer.api.InstallReferrerClientImpl.getInstallReferrer(InstallReferrerClientImpl.java:5) at de.lschmierer.android_play_install_referrer.AndroidPlayInstallReferrerPlugin.handleOnInstallReferrerSetupFinished(AndroidPlayInstallReferrerPlugin.kt:86) at de.lschmierer.android_play_install_referrer.AndroidPlayInstallReferrerPlugin.access$handleOnInstallReferrerSetupFinished(AndroidPlayInstallReferrerPlugin.kt:17) at de.lschmierer.android_play_install_referrer.AndroidPlayInstallReferrerPlugin$getInstallReferrer$1.onInstallReferrerSetupFinished(AndroidPlayInstallReferrerPlugin.kt:72) at com.android.installreferrer.api.InstallReferrerClientImpl$InstallReferrerServiceConnection.onServiceConnected(InstallReferrerClientImpl.java:4) at android.app.LoadedApk$ServiceDispatcher.doConnected(LoadedApk.java:2022) at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:2054) at android.os.Handler.handleCallback(Handler.java:938) at android.os.Handler.dispatchMessage(Handler.java:99) at android.os.Looper.loop(Looper.java:223) at android.app.ActivityThread.main(ActivityThread.java:7950) at java.lang.reflect.Method.invoke(Method.java) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:603) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947) java.lang.reflect.InvocationTargetException: null at java.lang.reflect.Method.invoke(Method.java) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:603) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947) java.lang.RuntimeException: java.lang.reflect.InvocationTargetException at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:613) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
android.os.DeadObjectException: null at android.os.BinderProxy.transactNative(BinderProxy.java) at android.os.BinderProxy.transact(BinderProxy.java:545) at com.google.android.a.a.b(BaseProxy.java:2) at com.google.android.finsky.externalreferrer.IGetInstallReferrerService$Stub$Proxy.c(IGetInstallReferrerService.java:3) at com.android.installreferrer.api.InstallReferrerClientImpl.getInstallReferrer(InstallReferrerClientImpl.java:5) at de.lschmierer.android_play_install_referrer.AndroidPlayInstallReferrerPlugin.handleOnInstallReferrerSetupFinished(AndroidPlayInstallReferrerPlugin.kt:86) at de.lschmierer.android_play_install_referrer.AndroidPlayInstallReferrerPlugin.access$handleOnInstallReferrerSetupFinished(AndroidPlayInstallReferrerPlugin.kt:17) at de.lschmierer.android_play_install_referrer.AndroidPlayInstallReferrerPlugin$getInstallReferrer$1.onInstallReferrerSetupFinished(AndroidPlayInstallReferrerPlugin.kt:72) at com.android.installreferrer.api.InstallReferrerClientImpl$InstallReferrerServiceConnection.onServiceConnected(InstallReferrerClientImpl.java:4) at android.app.LoadedApk$ServiceDispatcher.doConnected(LoadedApk.java:2022) at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:2054) at android.os.Handler.handleCallback(Handler.java:938) at android.os.Handler.dispatchMessage(Handler.java:99) at android.os.Looper.loop(Looper.java:223) at android.app.ActivityThread.main(ActivityThread.java:7950) at java.lang.reflect.Method.invoke(Method.java) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:603) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947) java.lang.reflect.InvocationTargetException: null at java.lang.reflect.Method.invoke(Method.java) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:603) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947) java.lang.RuntimeException: java.lang.reflect.InvocationTargetException at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:613) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
Unhandled Exception: System.IO.IOException: The process cannot access the file 'C:\Users\cloudtest\AppData\Local\Microsoft\VisualStudio\Packages\_Instances\3b699d2c\state.json' because it is being used by another process. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) at System.IO.StreamReader..ctor(String path, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize, Boolean checkHost) at System.IO.StreamReader..ctor(String path) at System.IO.File.OpenText(String path) at Microsoft.VisualStudio.Setup.Cache.FileStateManager.TryReadInstance(String instanceId, Instance& instance) at Microsoft.VisualStudio.Setup.Cache.InstanceRepository.GetInstance() at Microsoft.VisualStudio.Setup.Cache.CacheManager.InitPreviousLayoutRepositories() at Microsoft.VisualStudio.Setup.Engine.<Initialize>b__159_22() at Microsoft.VisualStudio.Setup.Services.ServiceProvider.AddService[T](T& object, Boolean keepAlive, Func
Unhandled Exception: System.IO.IOException: The process cannot access the file 'C:\Users\cloudtest\AppData\Local\Microsoft\VisualStudio\Packages\_Instances\3b699d2c\state.json' because it is being used by another process. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) at System.IO.StreamReader..ctor(String path, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize, Boolean checkHost) at System.IO.StreamReader..ctor(String path) at System.IO.File.OpenText(String path) at Microsoft.VisualStudio.Setup.Cache.FileStateManager.TryReadInstance(String instanceId, Instance& instance) at Microsoft.VisualStudio.Setup.Cache.InstanceRepository.GetInstance() at Microsoft.VisualStudio.Setup.Cache.CacheManager.InitPreviousLayoutRepositories() at Microsoft.VisualStudio.Setup.Engine.<Initialize>b__159_22() at Microsoft.VisualStudio.Setup.Services.ServiceProvider.AddService[T](T& object, Boolean keepAlive, Func`1 getter) at Microsoft.VisualStudio.Setup.Engine.Initialize() at Microsoft.VisualStudio.Setup.Engine.GetProducts() at Microsoft.VisualStudio.ExtensionManager.SetupEngineService.CreateEngine(IEngineHost engineHost, IServiceProvider serviceProvider, InstallFlags installFlags) at Microsoft.VisualStudio.ExtensionManager.ExtensionEngineImpl.PerformSetupEngineInstall(InstallableExtensionImpl extension, Boolean installPerMachine, Boolean isPackComponent, IDictionary`2 extensionsInstalledSoFar, List`1 extensionsUninstalledSoFar, IInstalledExtensionList modifiedInstalledExtensionsList, IProgress`1 progress, InstallFlags installFlags, AsyncOperation asyncOp, Version targetedVsVersion, IInstalledExtension& newExtension) at Microsoft.VisualStudio.ExtensionManager.ExtensionEngineImpl.InstallInternal(InstallableExtensionImpl extension, InstallFlags installFlags, IDictionary`2 extensionsInstalledSoFar, List`1 extensionsUninstalledSoFar, IInstalledExtensionList modifiedInstalledExtensionsList, AsyncOperation asyncOp, IProgress`1 progress, Version targetedVsVersion) at Microsoft.VisualStudio.ExtensionManager.ExtensionEngineImpl.BeginInstall(IInstallableExtension installableExtension, InstallFlags installFlags, AsyncOperation asyncOp, Version targetedVsVersion) at Microsoft.VisualStudio.ExtensionManager.ExtensionEngineImpl.Install(IInstallableExtension extension, InstallFlags installFlags, Version targetedVsVersion) at Microsoft.VisualStudio.ExtensionManager.ExtensionManagerService.Install(IInstallableExtension extension, Boolean perMachine) at VsixExpInstaller.Program.<>c__DisplayClass16_0.<Main>g__Install|7(IInstallableExtension installableExtension, <>c__DisplayClass16_4& , <>c__DisplayClass16_5& ) in /_/src/VSIXExpInstaller/Program.cs:line 337 at VsixExpInstaller.Program.<>c__DisplayClass16_0.<Main>g__RunProgram|1() in /_/src/VSIXExpInstaller/Program.cs:line 312 at VsixExpInstaller.Program.Main(String[] args) in /_/src/VSIXExpInstaller/Program.cs:line 193
Error getting access token for service account: 400 Bad Request POST https://oauth2.googleapis.com/token {"error":"invalid_grant","error_description":"Invalid JWT Signature."}, iss: 806222273987-uilktks3j6i7962rp0v7nusveer58497@developer.gserviceaccount.com com.google.cloud.storage.StorageException: Error getting access token for service account: 400 Bad Request ....
Error getting access token for service account: 400 Bad Request POST https://oauth2.googleapis.com/token {"error":"invalid_grant","error_description":"Invalid JWT Signature."}, iss: 806222273987-uilktks3j6i7962rp0v7nusveer58497@developer.gserviceaccount.com com.google.cloud.storage.StorageException: Error getting access token for service account: 400 Bad Request ....
FAIL: tst_remote3.sh ============================================================================ Testsuite summary for netCDF 4.8.1 ============================================================================ # TOTAL: 16 # PASS: 15 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See ncdap_test/test-suite.log Please report to support-netcdf@unidata.ucar.edu ============================================================================ make[5]: *** [Makefile:1090: test-suite.log] Error 1 make[5]: Leaving directory '/data/software/src/netcdf/netcdf-c-4.8.1/ncdap_test' make[4]: *** [Makefile:1198: check-TESTS] Error 2 make[4]: Leaving directory '/data/software/src/netcdf/netcdf-c-4.8.1/ncdap_test' make[3]: *** [Makefile:1346: check-am] Error 2 make[3]: Leaving directory '/data/software/src/netcdf/netcdf-c-4.8.1/ncdap_test' make[2]: *** [Makefile:977: check-recursive] Error 1 make[2]: Leaving directory '/data/software/src/netcdf/netcdf-c-4.8.1/ncdap_test' make[1]: *** [Makefile:1348: check] Error 2 make[1]: Leaving directory '/data/software/src/netcdf/netcdf-c-4.8.1/ncdap_test' make: *** [Makefile:729: check-recursive] Error 1
FAIL: tst_remote3.sh ============================================================================ Testsuite summary for netCDF 4.8.1 ============================================================================ # TOTAL: 16 # PASS: 15 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See ncdap_test/test-suite.log Please report to support-netcdf@unidata.ucar.edu ============================================================================ make[5]: *** [Makefile:1090: test-suite.log] Error 1 make[5]: Leaving directory '/data/software/src/netcdf/netcdf-c-4.8.1/ncdap_test' make[4]: *** [Makefile:1198: check-TESTS] Error 2 make[4]: Leaving directory '/data/software/src/netcdf/netcdf-c-4.8.1/ncdap_test' make[3]: *** [Makefile:1346: check-am] Error 2 make[3]: Leaving directory '/data/software/src/netcdf/netcdf-c-4.8.1/ncdap_test' make[2]: *** [Makefile:977: check-recursive] Error 1 make[2]: Leaving directory '/data/software/src/netcdf/netcdf-c-4.8.1/ncdap_test' make[1]: *** [Makefile:1348: check] Error 2 make[1]: Leaving directory '/data/software/src/netcdf/netcdf-c-4.8.1/ncdap_test' make: *** [Makefile:729: check-recursive] Error 1
DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working
DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working
import time import threading from serial import Serial from pyubx2 import UBXReader, UBXMessage, ERR_IGNORE, VALCKSUM, UBX_PROTOCOL, SET_LAYER_RAM, SET_LAYER_FLASH, \ POLL_LAYER_RAM, POLL_LAYER_FLASH, TXN_START, TXN_ONGOING, TXN_COMMIT, UBX_MSGIDS class GPS(): def __init__(self, **kwargs): self.port = "/dev/ttyACM0" self.serial_port = None self.ubx_reader = None self.is_configured = False self.ram_verified = False self.flash_verified = False # MOVING BASE MODE # RTCM OUTPUT ON UART2 self.baudrate = 460800 self.configuration = ([ ("CFG_UART1_ENABLED", 0), ("CFG_UART2_ENABLED", 1), ("CFG_USB_ENABLED", 0), ("CFG_SPI_ENABLED", 0), ("CFG_I2C_ENABLED", 0), # # RATE / FREQUENCY ("CFG_RATE_MEAS", 200), ("CFG_RATE_NAV", 1), ## UART 1 # BAUDRATE ("CFG_UART1_BAUDRATE", int(self.baudrate)), # INPUT ("CFG_UART1INPROT_NMEA", 0), ("CFG_UART1INPROT_RTCM3X", 0), ("CFG_UART1INPROT_UBX", 0), # OUTPUT ("CFG_UART1OUTPROT_NMEA", 0), ("CFG_UART1OUTPROT_RTCM3X", 0), ("CFG_UART1OUTPROT_UBX", 0), ## UART 2 # BAUDRATE ("CFG_UART2_BAUDRATE", int(self.baudrate)), # INPUT ("CFG_UART2INPROT_NMEA", 0), ("CFG_UART2INPROT_RTCM3X", 0), ("CFG_UART2INPROT_UBX", 0), # OUTPUT ("CFG_UART2OUTPROT_NMEA", 0), ("CFG_UART2OUTPROT_RTCM3X", 1), ("CFG_UART2OUTPROT_UBX", 0), ("CFG_MSGOUT_RTCM_3X_TYPE1074_UART2", 1), ("CFG_MSGOUT_RTCM_3X_TYPE1084_UART2", 1), ("CFG_MSGOUT_RTCM_3X_TYPE1094_UART2", 1), ("CFG_MSGOUT_RTCM_3X_TYPE1124_UART2", 1), ("CFG_MSGOUT_RTCM_3X_TYPE1230_UART2", 1), ("CFG_MSGOUT_RTCM_3X_TYPE4072_0_UART2", 1), ## USB # INPUT ("CFG_USBINPROT_NMEA", 0), ("CFG_USBINPROT_RTCM3X", 0), ("CFG_UART2INPROT_UBX", 0), # OUTPUT ("CFG_USBOUTPROT_NMEA", 0), ("CFG_USBOUTPROT_RTCM3X", 0), ("CFG_USBOUTPROT_UBX", 0), [Truncated] while True: try: msg = self.ubx_reader.read() except: continue def connect(self): self.serial_port = Serial(self.port, self.baudrate, timeout=1) self.ubx_reader = UBXReader(self.serial_port, quitonerror=ERR_IGNORE, validate=VALCKSUM, protfilter=UBX_PROTOCOL) def get_keys(self) -> list: l = [] for t in self.configuration: l.append(t[0]) return l if __name__ == '__main__': gps = GPS()
import time import threading from serial import Serial from pyubx2 import UBXReader, UBXMessage, ERR_IGNORE, VALCKSUM, UBX_PROTOCOL, SET_LAYER_RAM, SET_LAYER_FLASH, \ POLL_LAYER_RAM, POLL_LAYER_FLASH, TXN_START, TXN_ONGOING, TXN_COMMIT, UBX_MSGIDS class GPS(): def __init__(self, **kwargs): self.port = "/dev/ttyACM0" self.serial_port = None self.ubx_reader = None self.is_configured = False self.ram_verified = False self.flash_verified = False # MOVING BASE MODE # RTCM OUTPUT ON UART2 self.baudrate = 460800 self.configuration = ([ ("CFG_UART1_ENABLED", 0), ("CFG_UART2_ENABLED", 1), ("CFG_USB_ENABLED", 0), ("CFG_SPI_ENABLED", 0), ("CFG_I2C_ENABLED", 0), # # RATE / FREQUENCY ("CFG_RATE_MEAS", 200), ("CFG_RATE_NAV", 1), ## UART 1 # BAUDRATE ("CFG_UART1_BAUDRATE", int(self.baudrate)), # INPUT ("CFG_UART1INPROT_NMEA", 0), ("CFG_UART1INPROT_RTCM3X", 0), ("CFG_UART1INPROT_UBX", 0), # OUTPUT ("CFG_UART1OUTPROT_NMEA", 0), ("CFG_UART1OUTPROT_RTCM3X", 0), ("CFG_UART1OUTPROT_UBX", 0), ## UART 2 # BAUDRATE ("CFG_UART2_BAUDRATE", int(self.baudrate)), # INPUT ("CFG_UART2INPROT_NMEA", 0), ("CFG_UART2INPROT_RTCM3X", 0), ("CFG_UART2INPROT_UBX", 0), # OUTPUT ("CFG_UART2OUTPROT_NMEA", 0), ("CFG_UART2OUTPROT_RTCM3X", 1), ("CFG_UART2OUTPROT_UBX", 0), ("CFG_MSGOUT_RTCM_3X_TYPE1074_UART2", 1), ("CFG_MSGOUT_RTCM_3X_TYPE1084_UART2", 1), ("CFG_MSGOUT_RTCM_3X_TYPE1094_UART2", 1), ("CFG_MSGOUT_RTCM_3X_TYPE1124_UART2", 1), ("CFG_MSGOUT_RTCM_3X_TYPE1230_UART2", 1), ("CFG_MSGOUT_RTCM_3X_TYPE4072_0_UART2", 1), ## USB # INPUT ("CFG_USBINPROT_NMEA", 0), ("CFG_USBINPROT_RTCM3X", 0), ("CFG_UART2INPROT_UBX", 0), # OUTPUT ("CFG_USBOUTPROT_NMEA", 0), ("CFG_USBOUTPROT_RTCM3X", 0), ("CFG_USBOUTPROT_UBX", 0), [Truncated] while True: try: msg = self.ubx_reader.read() except: continue def connect(self): self.serial_port = Serial(self.port, self.baudrate, timeout=1) self.ubx_reader = UBXReader(self.serial_port, quitonerror=ERR_IGNORE, validate=VALCKSUM, protfilter=UBX_PROTOCOL) def get_keys(self) -> list: l = [] for t in self.configuration: l.append(t[0]) return l if __name__ == '__main__': gps = GPS()
Downloading immutables-0.16.tar.gz (84 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 84.5/84.5 KB 12.3 MB/s eta 0:00:00 Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'error' error: subprocess-exited-with-error Γ— Getting requirements to build wheel did not run successfully. β”‚ exit code: 1 ╰─> [1009 lines of output] /tmp/pip-build-env-7qjk9iks/overlay/lib/python3.10/site-packages/setuptools/config/pyprojecttoml.py:100: _ExperimentalProjectMetadata: Support for project metadata in
is still experimental and may be removed (or change) in future releases. warnings.warn(msg, _ExperimentalProjectMetadata) configuration error:
$ pipinstall immutables error: subprocess-exited-with-error Γ— Getting requirements to build wheel did not run successfully. β”‚ exit code: 1 ╰─> [1007 lines of output] /tmp/pip-build-env-ur_i0_t6/overlay/lib/python3.10/site-packages/setuptools/config/pyprojecttoml.py:100: _ExperimentalProjectMetadata: Support for project metadata in
is still experimental and may be removed (or change) in future releases. warnings.warn(msg, _ExperimentalProjectMetadata) configuration error:
# requirements.txt # ... falcon==1.4.1 gunicorn==19.9.0 git+https://github.com/username_2/immutables@avoid-issue-7#egg=immutables Jinja2==3.0.3 lxml==4.4.1 # ...
Downloading immutables-0.16.tar.gz (84 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 84.5/84.5 KB 12.3 MB/s eta 0:00:00 Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'error' error: subprocess-exited-with-error Γ— Getting requirements to build wheel did not run successfully. β”‚ exit code: 1 ╰─> [1009 lines of output] /tmp/pip-build-env-7qjk9iks/overlay/lib/python3.10/site-packages/setuptools/config/pyprojecttoml.py:100: _ExperimentalProjectMetadata: Support for project metadata in `pyproject.toml` is still experimental and may be removed (or change) in future releases. warnings.warn(msg, _ExperimentalProjectMetadata) configuration error: `project` must contain ['name'] properties DESCRIPTION: Data structure for the **project** table inside ``pyproject.toml`` (as initially defined in :pep:`621`) GIVEN VALUE: { "requires-python": ">=3.6" } OFFENDING RULE: 'required'
$ pipinstall immutables error: subprocess-exited-with-error Γ— Getting requirements to build wheel did not run successfully. β”‚ exit code: 1 ╰─> [1007 lines of output] /tmp/pip-build-env-ur_i0_t6/overlay/lib/python3.10/site-packages/setuptools/config/pyprojecttoml.py:100: _ExperimentalProjectMetadata: Support for project metadata in `pyproject.toml` is still experimental and may be removed (or change) in future releases. warnings.warn(msg, _ExperimentalProjectMetadata) configuration error: `project` must contain ['name'] properties DESCRIPTION: Data structure for the **project** table inside ``pyproject.toml`` (as initially defined in :pep:`621`)
# requirements.txt # ... falcon==1.4.1 gunicorn==19.9.0 git+https://github.com/username_2/immutables@avoid-issue-7#egg=immutables Jinja2==3.0.3 lxml==4.4.1 # ...
NAME INSTALLED FIXED-IN VULNERABILITY SEVERITY httpclient 4.3.6 4.5.13 GHSA-7r82-7xv7-xcpj Medium jackson-databind 2.8.11.1 2.9.10.8 GHSA-8w26-6f25-cm9x High jackson-databind 2.8.11.1 2.8.11.5 GHSA-gww7-p5w4-wrfv Critical jackson-databind 2.8.11.1 2.9.10.4 GHSA-p43x-xfjf-5jhr Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-wh8g-3j2c-rqj5 High jackson-databind 2.8.11.1 2.12.6.1 GHSA-57j2-w4cx-62h2 High jackson-databind 2.8.11.1 2.8.11.3 GHSA-645p-88qh-w398 Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-9gph-22xh-8x98 High jackson-databind 2.8.11.1 2.8.11.5 GHSA-cf6r-3wgc-h863 High jackson-databind 2.8.11.1 2.8.11.3 GHSA-f9hv-mg5h-xcw9 Critical jackson-databind 2.8.11.1 2.8.11.3 GHSA-4gq5-ch57-c2mg Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-8c4j-34r4-xr8g High jackson-databind 2.8.11.1 2.9.10.8 GHSA-f9xh-2qgp-cq57 High jackson-databind 2.8.11.1 2.9.9.2 GHSA-gwp4-hfv6-p7hw High jackson-databind 2.8.11.1 2.9.10.8 GHSA-m6x4-97wx-4q27 High jackson-databind 2.8.11.1 2.9.10.8 GHSA-r3gr-cxrf-hg25 High jackson-databind 2.8.11.1 2.8.11.3 GHSA-x2w5-5m2g-7h5m Critical jackson-databind 2.8.11.1 2.8.11.5 GHSA-4w82-r329-3q67 Critical jackson-databind 2.8.11.1 2.9.10 GHSA-85cw-hj65-qqv9 Critical jackson-databind 2.8.11.1 2.9.10.1 GHSA-gjmw-vf9h-g25v Critical jackson-databind 2.8.11.1 2.9.10.6 GHSA-h3cw-g4mq-c5x2 High jackson-databind 2.8.11.1 2.9.10.1 GHSA-mx7p-6679-8g3q Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-r695-7vr9-jgc2 High jackson-databind 2.8.11.1 2.9.10.7 GHSA-5949-rw7g-wx7w High jackson-databind 2.8.11.1 2.9.10 GHSA-f3j5-rmmp-3fc5 Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-9m6f-7xcq-8vf8 High jackson-databind 2.8.11.1 2.8.11.3 GHSA-9mxf-g3x6-wv74 Critical jackson-databind 2.8.11.1 2.9.9.1 GHSA-cmfg-87vq-g5g4 Medium jackson-databind 2.8.11.1 2.9.10 GHSA-h822-r4r5-v8jg Critical jackson-databind 2.8.11.1 2.8.11.3 GHSA-mx9v-gmh4-mgqw Critical jackson-databind 2.8.11.1 2.9.10.7 GHSA-288c-cq4h-88gq High jackson-databind 2.8.11.1 2.9.9 GHSA-5ww9-j83m-q7qx High jackson-databind 2.8.11.1 2.8.11.2 GHSA-qr7j-h6gg-jmgc Critical jackson-databind 2.8.11.1 2.9.10.4 GHSA-fqwf-pjwf-7vqv Medium jackson-databind 2.8.11.1 2.9.9.1 GHSA-mph4-vhrx-mv67 Medium jackson-databind 2.8.11.1 2.9.10.6 GHSA-qjw2-hr98-qgfh Critical jackson-databind 2.8.11.1 2.8.11.2 GHSA-6wqp-v4v6-c87c High jackson-databind 2.8.11.1 2.9.10.8 GHSA-cvm9-fjm9-3572 High jackson-databind 2.8.11.1 2.8.11.2 GHSA-cjjf-94ff-43w7 High jackson-databind 2.8.11.1 2.9.10.1 GHSA-fmmc-742q-jg75 Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-v585-23hc-c647 High jackson-databind 2.8.11.1 2.9.9.2 GHSA-6fpp-rgj9-8rwc Critical jackson-databind 2.8.11.1 2.8.11.3 GHSA-c8hm-7hpq-7jhg High jackson-databind 2.8.11.1 2.9.10.8 GHSA-vfqx-33qm-g869 High jackson-databind 2.8.11.1 2.9.10.8 GHSA-89qr-369f-5m5x High jackson-databind 2.8.11.1 2.9.10.4 GHSA-q93h-jc49-78gg Critical jackson-datatype-jsr310 2.8.11 2.9.8 GHSA-h4x4-5qp2-wp[46](https://code.chs.usgs.gov/ctek/docker/codacy-coverage-reporter/-/jobs/1517900#L46) Medium logback-core 1.2.3 1.2.9 GHSA-[66](https://code.chs.usgs.gov/ctek/docker/codacy-coverage-reporter/-/jobs/1517900#L66)8q-qrv7-99fm Medium
NAME INSTALLED FIXED-IN VULNERABILITY SEVERITY httpclient 4.3.6 4.5.13 GHSA-7r82-7xv7-xcpj Medium jackson-databind 2.8.11.1 2.9.10.8 GHSA-8w26-6f25-cm9x High jackson-databind 2.8.11.1 2.8.11.5 GHSA-gww7-p5w4-wrfv Critical jackson-databind 2.8.11.1 2.9.10.4 GHSA-p43x-xfjf-5jhr Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-wh8g-3j2c-rqj5 High jackson-databind 2.8.11.1 2.12.6.1 GHSA-57j2-w4cx-62h2 High jackson-databind 2.8.11.1 2.8.11.3 GHSA-645p-88qh-w398 Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-9gph-22xh-8x98 High jackson-databind 2.8.11.1 2.8.11.5 GHSA-cf6r-3wgc-h863 High jackson-databind 2.8.11.1 2.8.11.3 GHSA-f9hv-mg5h-xcw9 Critical jackson-databind 2.8.11.1 2.8.11.3 GHSA-4gq5-ch57-c2mg Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-8c4j-34r4-xr8g High jackson-databind 2.8.11.1 2.9.10.8 GHSA-f9xh-2qgp-cq57 High jackson-databind 2.8.11.1 2.9.9.2 GHSA-gwp4-hfv6-p7hw High jackson-databind 2.8.11.1 2.9.10.8 GHSA-m6x4-97wx-4q27 High jackson-databind 2.8.11.1 2.9.10.8 GHSA-r3gr-cxrf-hg25 High jackson-databind 2.8.11.1 2.8.11.3 GHSA-x2w5-5m2g-7h5m Critical jackson-databind 2.8.11.1 2.8.11.5 GHSA-4w82-r329-3q67 Critical jackson-databind 2.8.11.1 2.9.10 GHSA-85cw-hj65-qqv9 Critical jackson-databind 2.8.11.1 2.9.10.1 GHSA-gjmw-vf9h-g25v Critical jackson-databind 2.8.11.1 2.9.10.6 GHSA-h3cw-g4mq-c5x2 High jackson-databind 2.8.11.1 2.9.10.1 GHSA-mx7p-6679-8g3q Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-r695-7vr9-jgc2 High jackson-databind 2.8.11.1 2.9.10.7 GHSA-5949-rw7g-wx7w High jackson-databind 2.8.11.1 2.9.10 GHSA-f3j5-rmmp-3fc5 Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-9m6f-7xcq-8vf8 High jackson-databind 2.8.11.1 2.8.11.3 GHSA-9mxf-g3x6-wv74 Critical jackson-databind 2.8.11.1 2.9.9.1 GHSA-cmfg-87vq-g5g4 Medium jackson-databind 2.8.11.1 2.9.10 GHSA-h822-r4r5-v8jg Critical jackson-databind 2.8.11.1 2.8.11.3 GHSA-mx9v-gmh4-mgqw Critical jackson-databind 2.8.11.1 2.9.10.7 GHSA-288c-cq4h-88gq High jackson-databind 2.8.11.1 2.9.9 GHSA-5ww9-j83m-q7qx High jackson-databind 2.8.11.1 2.8.11.2 GHSA-qr7j-h6gg-jmgc Critical jackson-databind 2.8.11.1 2.9.10.4 GHSA-fqwf-pjwf-7vqv Medium jackson-databind 2.8.11.1 2.9.9.1 GHSA-mph4-vhrx-mv67 Medium jackson-databind 2.8.11.1 2.9.10.6 GHSA-qjw2-hr98-qgfh Critical jackson-databind 2.8.11.1 2.8.11.2 GHSA-6wqp-v4v6-c87c High jackson-databind 2.8.11.1 2.9.10.8 GHSA-cvm9-fjm9-3572 High jackson-databind 2.8.11.1 2.8.11.2 GHSA-cjjf-94ff-43w7 High jackson-databind 2.8.11.1 2.9.10.1 GHSA-fmmc-742q-jg75 Critical jackson-databind 2.8.11.1 2.9.10.8 GHSA-v585-23hc-c647 High jackson-databind 2.8.11.1 2.9.9.2 GHSA-6fpp-rgj9-8rwc Critical jackson-databind 2.8.11.1 2.8.11.3 GHSA-c8hm-7hpq-7jhg High jackson-databind 2.8.11.1 2.9.10.8 GHSA-vfqx-33qm-g869 High jackson-databind 2.8.11.1 2.9.10.8 GHSA-89qr-369f-5m5x High jackson-databind 2.8.11.1 2.9.10.4 GHSA-q93h-jc49-78gg Critical jackson-datatype-jsr310 2.8.11 2.9.8 GHSA-h4x4-5qp2-wp[46](https://code.chs.usgs.gov/ctek/docker/codacy-coverage-reporter/-/jobs/1517900#L46) Medium logback-core 1.2.3 1.2.9 GHSA-[66](https://code.chs.usgs.gov/ctek/docker/codacy-coverage-reporter/-/jobs/1517900#L66)8q-qrv7-99fm Medium