This circuit applies a Hadamard gate, a pi/4 phase rotation, another Hadamard gate, and finally a measurement on a single qubit.
```python
from qiskit import *
from math import pi
qc = QuantumCircuit(1, 1)
qc.h(0)
qc.rz(pi/4, 0)
qc.h(0)
qc.measure(0, 0)
```
'Failed to run program: \'409 Client Error: Conflict for url: https://api.quantum.ibm.com/runtime/jobs. {"errors":[{"message":"You have reached the limit of 3 pending jobs. Please wait for a job to complete or cancel one before submitting anything new.","code":3458,"solution":"Wait until some previous jobs were finished. You can cancel pending jobs to run new jobs.","more_info":"https://docs.quantum-computing.ibm.com/errors"}]}\''