List of commits:
Subject Hash Author Date (UTC)
Fixed typo. db82c84f8d834e62cb37333ff973ddc54af5372f Jan Allersma 2017-09-20 20:51:15
RabbitMQ test.First attempt. 876d29c668f5e027a820f3ff48a6ca080fc530c2 Jan Allersma 2017-09-19 13:47:31
Initial commit 6a565c61a3337232d0e7a136ffb2f49b431c2a40 Jan Allersma 2017-09-11 06:52:38
Commit db82c84f8d834e62cb37333ff973ddc54af5372f - Fixed typo.
Author: Jan Allersma
Author date (UTC): 2017-09-20 20:51
Committer name: Jan Allersma
Committer date (UTC): 2017-09-20 20:51
Parent(s): 876d29c668f5e027a820f3ff48a6ca080fc530c2
Signer:
Signing key:
Signing status: N
Tree: 0e92e714abca3bd5c9f423a88db52064df9d6a9b
File Lines added Lines deleted
simulatie/rabbit/helloworld_reciever.py 4 2
File simulatie/rabbit/helloworld_reciever.py changed (mode: 100644) (index 78e56a8..d29e4a1)
1 1 #!/usr/bin/env python #!/usr/bin/env python
2 2
3 3 import pika import pika
4 import thread
4 5
5 6 connection = pika.BlockingConnection(pika.ConnectionParameters(host='127.0.0.1')) connection = pika.BlockingConnection(pika.ConnectionParameters(host='127.0.0.1'))
6 7 channel = connection.channel() channel = connection.channel()
7 8
8 9 channel.queue_declare(queue='h') channel.queue_declare(queue='h')
9 10
10 def callback(ch, method, prop, body)
11 def callback(ch, method, prop, body):
11 12 print('%r ontvangen' % body) print('%r ontvangen' % body)
12 13
13 14 channel.basic_consume ( channel.basic_consume (
 
... ... channel.basic_consume (
17 18 ) )
18 19
19 20 print('Waiting for a sign..') print('Waiting for a sign..')
20 channel.start_consuming()
21 thread.start_new_thread(channel.start_consuming,())
22 thread.start_new_thread(raw_input,())
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/kapstok/NHL-SoftDev

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/kapstok/NHL-SoftDev

Clone this repository using git:
git clone git://git.rocketgit.com/user/kapstok/NHL-SoftDev

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main